2024-04-05 18:42:45 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
2024-04-23 14:56:43 +00:00
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
"jose": ["Josefin Sans", "sans-serif"]
|
|
|
|
}
|
|
|
|
},
|
2024-04-06 09:22:20 +00:00
|
|
|
},
|
2024-04-23 14:56:43 +00:00
|
|
|
plugins: [],
|
|
|
|
darkMode: 'class',
|
2024-04-05 18:42:45 +00:00
|
|
|
}
|
|
|
|
|