mat2-web/tailwind.config.js
2021-03-21 15:56:23 +01:00

28 lines
591 B
JavaScript

const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
future: {
},
purge: [
"./templates/**/*.html"
],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
blue: {
light: '#f4f7fb',
DEFAULT: '#99c1f1',
dark: '#1b5eb4',
}
},
fontFamily: {
sans: ['Rubik'],
},
},
},
variants: {},
plugins: [],
}