This repository was archived by the owner on Nov 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
104 lines (104 loc) · 2.52 KB
/
tailwind.config.js
File metadata and controls
104 lines (104 loc) · 2.52 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
module.exports = {
mode: 'jit',
purge: [
'./public/**/*.html',
'./src/**/*.{js,jsx,ts,tsx}',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
//extending tailwind default colors with evergreen-ui color pallete
colors: {
primary: {
'100': '#F7F9FD',
'200': '#F1F7FC',
'300': '#E9F2FA',
'400': '#DDEBF7',
'500': '#B7D4EF',
'600': '#8FBCE6',
'700': '#579AD9',
'800': '#3D8BD4',
'900': '#1070CA',
'1000': '#084B8A',
'lightest': this['100'],
'light': this['400'],
'base': this['900'],
'dark': this['1000'],
},
red: {
'100': '#FEF6F6',
'400': '#FAE2E2',
'900': '#EC4C47',
'1000': '#BF0E08',
'lightest': this['100'],
'light': this['400'],
'base': this['900'],
'dark': this['1000'],
},
orange: {
'100': '#FDF8F3',
'400': '#FAE3CD',
'900': '#D9822B',
'1000': '#95591E',
'lightest': this['100'],
'light': this['400'],
'base': this['900'],
'dark': this['1000'],
},
yellow: {
'100': '#FEF8E7',
'400': '#FBE6A2',
'900': '#F7D154',
'1000': '#7E6514',
'lightest': this['100'],
'light': this['400'],
'base': this['900'],
'dark': this['1000'],
},
green: {
'100': '#F1FAF5',
'400': '#D4EEE2',
'900': '#47B881',
'1000': '#00783E',
'lightest': this['100'],
'light': this['400'],
'base': this['900'],
'dark': this['1000'],
},
teal: {
'100': '#F1FBFC',
'400': '#D2EEF3',
'900': '#14B5D0',
'1000': '#007489',
'lightest': this['100'],
'light': this['400'],
'base': this['900'],
'dark': this['1000'],
},
purple: {
'100': '#F8F7FC',
'400': '#EAE7F8',
'900': '#735DD0',
'1000': '#37248F',
'lightest': this['100'],
'light': this['400'],
'base': this['900'],
'dark': this['1000'],
},
},
fontFamily: {
display: ['Inter', 'system-ui']
},
rotate: {
'-25': '-25deg',
25: '25deg',
}
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
]
}