mirror of
https://0xacab.org/jvoisin/mat2-web.git
synced 2025-02-23 16:49:59 -05:00
28 lines
593 B
JavaScript
28 lines
593 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
future: {
|
|
},
|
|
content: [
|
|
"./templates/**/*.html"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
blue: {
|
|
light: '#f4f7fb',
|
|
DEFAULT: '#99c1f1',
|
|
dark: '#1b5eb4',
|
|
}
|
|
},
|
|
fontFamily: {
|
|
sans: ['Rubik'],
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
}
|