adrema-form/tailwind.config.js

24 lines
568 B
JavaScript
Raw Normal View History

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: {
primary: {
DEFAULT: 'var(--primary)',
},
secondary: {
DEFAULT: 'var(--secondary)',
},
font: {
DEFAULT: 'var(--font)',
},
circle: {
DEFAULT: 'var(--circle)',
},
},
},
},
plugins: [],
};