Weblah/tailwind.config.ts
Shibo Lyu a6b8910b8e init
2024-08-28 17:08:32 +08:00

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;