22 lines
457 B
JavaScript
22 lines
457 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
accent: {
|
|
300: '#a89bbf',
|
|
400: '#9587ad',
|
|
500: '#7d6f98',
|
|
600: '#6a5d84'
|
|
}
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif']
|
|
},
|
|
boxShadow: {
|
|
glow: '0 0 0 1px rgba(63,63,70,0.65), 0 18px 44px rgba(0,0,0,0.45)'
|
|
}
|
|
}
|
|
}
|
|
};
|