2021-03-18 09:25:11 +01:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
future: {
|
|
|
|
},
|
2022-04-23 17:37:29 +02:00
|
|
|
content: [
|
2021-03-21 15:56:23 +01:00
|
|
|
"./templates/**/*.html"
|
|
|
|
],
|
2021-03-18 09:25:11 +01:00
|
|
|
theme: {
|
|
|
|
extend: {
|
2021-03-18 10:38:18 +01:00
|
|
|
colors: {
|
2021-03-18 14:18:28 +01:00
|
|
|
transparent: 'transparent',
|
|
|
|
current: 'currentColor',
|
2021-03-18 10:38:18 +01:00
|
|
|
blue: {
|
|
|
|
light: '#f4f7fb',
|
|
|
|
DEFAULT: '#99c1f1',
|
|
|
|
dark: '#1b5eb4',
|
|
|
|
}
|
|
|
|
},
|
2021-03-18 09:25:11 +01:00
|
|
|
fontFamily: {
|
2021-03-18 14:18:28 +01:00
|
|
|
sans: ['Rubik'],
|
2021-03-18 09:25:11 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
variants: {},
|
2021-03-18 14:18:28 +01:00
|
|
|
plugins: [],
|
2021-03-18 09:25:11 +01:00
|
|
|
}
|