-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 926 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 926 Bytes
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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
maxWidth: {
split: '640px',
},
colors: {
sky: '#5FD4F2',
egg: '#FF9D0A',
cement: '#ABABAB',
blue: {
100: '#D0F1FF',
400: '#89DCFF',
800: '#43C7FF',
1200: '#1499DA',
1600: '#0079AD',
2000: '#00587E',
2400: '#00374E',
2600: '#002B40',
3000: '#001828',
}
},
fontFamily: {
poppins: ['Poppins', 'system-ui', 'sans-serif'],
},
},
},
variants: {
extend: {},
},
plugins: [],
}