-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
46 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
42
43
44
45
46
module.exports = {
content: ["./index.html"],
darkMode: 'class', // or 'media' or 'class'
theme: {
fontFamily: {
'sans': ['Poppins']
},
extend: {
colors: {
'milk-white': '#F5F5F5',
// Primary
'curious-dark': '#0E5A81',
'curious': '#19A1E6',
'curious-300': '#63BFEE',
'curious-100': '#ACDDF6',
'curious-50': '#BFE5F8',
// Red
'roman': '#F54D3D',
'roman-300': '#F9948B',
// Yellow
'butter': '#F4C025',
'butter-300': '#F8D672',
// Green
'meadow': '#14B866',
'meadow-300': '#35E98F',
// Black
'noir-800': '#050506',
'noir': '#383C43',
'noir-400': '#6B7280',
'noir-200': '#969BA7',
'noir-50': '#C2C5CC',
// Text
'primary': '#050506',
'secondary': '#6B7280',
'overlay-base': 'rgba(43, 42, 42, 0.8)',
'transparent': 'rgba(255, 255, 255, 0)',
},},
},
plugins: [],
}