blob: d56edced52d32819f6313b180f2aead563e30f64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
future: {
},
purge: [],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
blue: {
light: '#f4f7fb',
DEFAULT: '#99c1f1',
dark: '#1b5eb4',
}
},
fontFamily: {
sans: ['Rubik'],
},
},
},
variants: {},
plugins: [],
}
|