-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 1019 Bytes
/
tailwind.config.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module.exports = {
content: require('fast-glob').sync([
'source/**/*.{blade.php,md,html,vue}',
]),
theme: {
fontFamily: {
sans: ['Karla', 'sans-serif'],
serif: ['Spectral', 'serif'],
mono: ['Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'monospace'],
},
screens: {
'sm': '576px',
'md': '768px',
'lg': '992px',
'xl': '1200px',
},
extend: {
colors: {
'transparent': 'transparent',
'black': '#22292f',
'grey-darker': '#606f7b',
'grey-light': '#dae1e7',
'white': '#ffffff',
'brand-brown': '#282224',
'brand-darkblue': '#071735',
'brand-darkblue-lighter': '#0d284e',
'brand-cyan-lighter': '#B7FFF2',
'brand-cyan': '#61FFE3',
'brand-cyan-darker': '#2C7467',
'brand-white': '#EBEBEB',
'brand-white-darker': '#B1AFAF'
},
letterSpacing: {
'wider': '0.1em',
'widest': '0.15em',
},
}
},
plugins: [],
}