2023-12-24 02:24:48 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
2023-12-24 22:25:17 +01:00
|
|
|
content: ['./src/**/*.vue'],
|
2023-12-24 02:24:48 +01:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
2023-12-25 21:15:25 +01:00
|
|
|
edit: {
|
|
|
|
DEFAULT: 'hsl(20, 77%, 55%)',
|
|
|
|
},
|
2023-12-24 02:24:48 +01:00
|
|
|
primary: {
|
|
|
|
DEFAULT: 'var(--primary)',
|
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
DEFAULT: 'var(--secondary)',
|
|
|
|
},
|
|
|
|
font: {
|
|
|
|
DEFAULT: 'var(--font)',
|
|
|
|
},
|
|
|
|
circle: {
|
|
|
|
DEFAULT: 'var(--circle)',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-12-26 03:33:00 +01:00
|
|
|
plugins: [require('@tailwindcss/container-queries')],
|
2023-12-24 02:24:48 +01:00
|
|
|
};
|