-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
84 lines (84 loc) · 1.84 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
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
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
fontFamily: {
'nunito': ['Nunito', 'sans-serif'],
},
fontSize: {
'xs': '.75rem',
'sm': '.875rem',
'tiny': '.875rem',
'base': '1rem',
'lg': '1.125rem',
'xl': '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
'8xl': '6rem',
'9xl': '7rem',
'10xl': '8rem'
},
colors: {
white: '#ffffff',
blue: {
'050': '#e6f6ff',
'100': '#bae3ff',
'200': '#7cc4fa',
'300': '#47a3f3',
'400': '#2186eb',
'500': '#0967d2',
'600': '#0552b5',
'700': '#03449e',
'800': '#01337d',
'900': '#002159'
},
cyan: {
'050': '#e1fcf8',
'100': '#c1fef6',
'200': '#92fdf2',
'300': '#62f4eb',
'400': '#3ae7e1',
'500': '#1cd4d4',
'600': '#0fb5ba',
'700': '#099aa4',
'800': '#07818f',
'900': '#05606e'
},
gray: {
'050': '#f5f7fa',
'070': '#eef1f6',
'100': '#e4e7eb',
'200': '#cbd2d9',
'300': '#9aa5b1',
'400': '#7b8794',
'500': '#616e7c',
'600': '#52606d',
'700': '#3e4c59',
'800': '#323f4b',
'900': '#1f2933'
},
green: {
'050': '#E3F9E5',
'100': '#C1F2C7',
'200': '#91E697',
'300': '#51CA58',
'400': '#31B237',
'500': '#18981D',
'600': '#0F8613',
'700': '#0E7817',
'800': '#07600E',
'900': '#014807'
}
}
},
variants: {},
plugins: []
}