24 lines
568 B
JavaScript
24 lines
568 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.vue'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: 'var(--primary)',
|
|
},
|
|
secondary: {
|
|
DEFAULT: 'var(--secondary)',
|
|
},
|
|
font: {
|
|
DEFAULT: 'var(--font)',
|
|
},
|
|
circle: {
|
|
DEFAULT: 'var(--circle)',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|