mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-17 22:14:26 +01:00
19 lines
511 B
TypeScript
19 lines
511 B
TypeScript
import tailwindForms from '@tailwindcss/forms';
|
|
import { type Config } from 'tailwindcss';
|
|
import colors from 'tailwindcss/colors';
|
|
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// a color for primary actions like a submit button.
|
|
primary: colors.rose['300'],
|
|
'primary-disabled': colors.rose['200'],
|
|
'sidebar-bg': colors.rose['100'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [tailwindForms],
|
|
} satisfies Config;
|