2024-10-09 16:36:58 +02:00
|
|
|
module.exports = {
|
|
|
|
content: ['./**/*.htm'],
|
|
|
|
theme: {
|
2024-10-09 19:36:44 +02:00
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
sky: {
|
|
|
|
900: 'hsl(206.9, 100.0%, 17.1%)',
|
|
|
|
},
|
|
|
|
red: {
|
|
|
|
900: 'hsl(352.4, 85.5%, 27.1%)',
|
|
|
|
},
|
|
|
|
cyan: {
|
|
|
|
200: 'hsl(197.0, 100.0%, 82.0%)',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
screens: {
|
|
|
|
xs: '414px',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fontFamily: {
|
|
|
|
sans: ['Noto Sans', 'ui-sans-serif'],
|
|
|
|
arvo: ['Arvo', 'ui-sans-serif'],
|
|
|
|
},
|
2024-10-09 16:36:58 +02:00
|
|
|
},
|
2024-10-09 19:36:44 +02:00
|
|
|
plugins: [require('@tailwindcss/typography')],
|
2024-10-09 16:36:58 +02:00
|
|
|
};
|