mat2-web/tailwind.config.js

28 lines
593 B
JavaScript
Raw Normal View History

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"
],
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',
}
},
fontFamily: {
2021-03-18 14:18:28 +01:00
sans: ['Rubik'],
},
},
},
variants: {},
2021-03-18 14:18:28 +01:00
plugins: [],
}