mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 15:39:59 -07:00
18 lines
313 B
TypeScript
18 lines
313 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;
|