mirror of
https://github.com/Blah-IM/Weblah.git
synced 2025-04-30 16:21:09 +00:00
16 lines
282 B
TypeScript
16 lines
282 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
import colors from 'tailwindcss/colors';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
accent: colors.blue
|
|
}
|
|
}
|
|
},
|
|
|
|
plugins: [require('@tailwindcss/typography')]
|
|
} as Config;
|