adrema-form/tailwind.config.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

2023-12-24 02:24:48 +01:00
/** @type {import('tailwindcss').Config} */
export default {
2024-02-04 01:28:36 +01:00
content: ['./src/**/*.vue'],
theme: {
extend: {
colors: {
edit: {
DEFAULT: 'hsl(20, 77%, 55%)',
},
primary: {
DEFAULT: 'var(--primary)',
},
primaryfg: {
DEFAULT: 'var(--primaryfg)',
},
secondary: {
DEFAULT: 'var(--secondary)',
},
font: {
DEFAULT: 'var(--font)',
},
circle: {
DEFAULT: 'var(--circle)',
},
},
fontFamily: {
arvo: ['Arvo'],
nunito: ['Nunito'],
},
boxShadow: {
button: 'inset 0 -2px 0 rgba(255,255,255,0.2)',
},
2024-01-31 00:18:03 +01:00
},
2023-12-24 02:24:48 +01:00
},
2024-02-04 01:28:36 +01:00
plugins: [require('@tailwindcss/container-queries'), require('@tailwindcss/typography')],
2023-12-24 02:24:48 +01:00
};