-
Notifications
You must be signed in to change notification settings - Fork 14
/
tailwind.config.js
54 lines (54 loc) · 1.07 KB
/
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
49
50
51
52
53
54
module.exports = {
theme: {
extend: {
inset: {
'1/2': '50%',
'2/5': '40%',
'full': '100%',
},
colors: {
primary: {
default: '#27DEBF',
100: '#93EFDF',
200: '#78EAD7',
300: '#5DE6CF',
400: '#42E2C7',
500: '#27DEBF',
600: '#22C2A7',
700: '#1DA78F',
800: '#188B77',
900: '#146F60',
},
secondary: {
default: '#204341',
100: '#90A1A0',
200: '#829594',
300: '#748A88',
400: '#667E7C',
500: '#587271',
600: '#4A6665',
700: '#3C5B59',
800: '#2E4F4D',
900: '#204341',
},
blue: {
default: '#2460DA',
100: '#F3F9FF',
200: '#769CE8',
300: '#5B88E3',
400: '#3F74DF',
500: '#2460DA',
600: '#2054BF',
700: '#1B48A4',
800: '#173C88',
900: '#12306D',
},
},
fontFamily: {
custom: ['Titillium Web'],
},
},
},
variants: {},
plugins: [],
}