2023-07-08 10:36:02 +02:00
|
|
|
import type { Config } from "tailwindcss"
|
|
|
|
import defaultTheme from "tailwindcss/defaultTheme";
|
|
|
|
|
|
|
|
export default <Config> {
|
2023-07-08 19:23:27 +02:00
|
|
|
darkMode: 'class',
|
2023-07-08 10:36:02 +02:00
|
|
|
content: [
|
|
|
|
'./components/**/*.{js,vue,ts}',
|
|
|
|
"./layouts/**/*.vue",
|
|
|
|
"./pages/**/*.vue",
|
|
|
|
"./plugins/**/*.{js,ts}",
|
|
|
|
"./nuxt.config.{js,ts}",
|
|
|
|
"./app.vue",
|
|
|
|
"./error.vue",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
'accent': {
|
|
|
|
'50': '#fcffe5',
|
|
|
|
'100': '#f6ffc7',
|
|
|
|
'200': '#ecff95',
|
|
|
|
'300': '#dcfe58',
|
|
|
|
'400': '#c9f526',
|
|
|
|
'500': '#aadc06',
|
|
|
|
'600': '#86b300',
|
|
|
|
'700': '#638506',
|
|
|
|
'800': '#4f690b',
|
|
|
|
'900': '#42580f',
|
|
|
|
'950': '#223201',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fontFamily: {
|
2023-07-09 20:09:50 +02:00
|
|
|
'title': ['Capriola', 'var(--mi-localized-font, \'\')', ...defaultTheme.fontFamily.sans],
|
|
|
|
'sans': ['Nunito', 'var(--mi-localized-font, \'\')', ...defaultTheme.fontFamily.sans],
|
|
|
|
'content-sans': ['Nunito', 'var(--mi-localized-font-p, var(--mi-localized-font))', ...defaultTheme.fontFamily.sans],
|
2023-07-08 10:36:02 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|