-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 972 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
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
fontSize: {
'sm': ['13px', '20px'],
'base': ['15px', '25px'],
'lg': ['16px', '24px'],
'xl': ['22px', '33px'],
'2xl': ['26px', '38px'],
},
extend: {
colors: {
'theme-offwhite': 'rgb(246, 248, 255)',
'theme-cool-100': 'rgb(105, 124, 154)',
'theme-cool-200': 'rgb(75, 106, 155)',
'theme-cool-300': 'rgb(43, 52, 66)',
'theme-warm-100': 'rgb(30, 42, 71)',
'theme-warm-200': 'rgb(20, 29, 47)',
'theme-primary': 'rgb(0, 121, 255)',
'theme-primary-faded': 'rgb(96, 171, 255)',
'theme-error': '#F74646',
'theme-dark': '#1E2A47',
'theme-darker': '#141D2F',
},
borderRadius: {
'10': '10px',
},
boxShadow: {
'card': '0px 16px 30px -10px rgba(70, 96, 187, 0.198567)',
},
},
},
plugins: [],
}