Files
rayhunter/bin/web/tailwind.config.ts
Markus Unterwaditzer 41133ba793 Changes to web configs
2025-07-10 12:24:26 -07:00

18 lines
365 B
TypeScript

import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
'rayhunter-blue': '#4e4eb1',
'rayhunter-dark-blue': '#3f3da0',
'rayhunter-green': '#94ea18'
}
}
},
plugins: []
} as Config;