2023-07-10 10:15:17 +02:00
|
|
|
const { fontFamily } = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: { black: '#0D0E0F', primary: '#58E1FF', secondary: '#00A2F8' },
|
|
|
|
fontFamily: {
|
|
|
|
...fontFamily,
|
2023-08-05 20:33:07 +02:00
|
|
|
sans: ['Work Sans Variable', ...fontFamily['sans']],
|
|
|
|
mono: ['IBM Plex Mono', ...fontFamily['mono']],
|
|
|
|
london: ['"London Between"', ...fontFamily['sans']]
|
2023-07-10 10:15:17 +02:00
|
|
|
},
|
|
|
|
backgroundImage: {
|
|
|
|
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-07-31 11:32:19 +02:00
|
|
|
plugins: [require('tailwindcss-animate')],
|
2023-08-05 20:33:07 +02:00
|
|
|
safelist: [
|
|
|
|
'animate-bounce',
|
|
|
|
'outline-amber-500',
|
|
|
|
// In here because of the footer
|
|
|
|
'text-teal-500',
|
|
|
|
'text-teal-600',
|
|
|
|
'text-cyan-500',
|
|
|
|
'text-cyan-600',
|
|
|
|
'text-green-500',
|
|
|
|
'text-green-600',
|
|
|
|
'text-lime-500',
|
|
|
|
'text-lime-600'
|
|
|
|
]
|
2023-07-10 10:15:17 +02:00
|
|
|
}
|