forked from photoview/photoview.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 914 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
42
43
44
45
46
47
48
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
layers: ['utilities'],
content: ['./src/**/*.html', './src/**/*.njk', './src/**/*.md'],
},
theme: {
fontFamily: {
sans: ['Lato', 'sans-serif'],
},
screens: {
sm: '640px',
md: '768px',
lg: '972px',
xl: '1280px',
'2xl': '1536px',
},
fontSize: {
xs: '.75em',
sm: '.875em',
tiny: '.875em',
base: '1em',
lg: '1.125em',
xl: '1.25em',
'2xl': '1.5em',
'3xl': '1.875em',
'4xl': '2.25em',
'5xl': '3em',
'6xl': '4em',
'7xl': '5em',
},
extend: {
colors: {
primary: '#168fd4',
primaryDark: '#00598e',
default: '#001012',
},
spacing: {
100: '28rem',
'572px': '572px',
'05': '0.2rem',
},
},
},
variants: {},
plugins: [],
}