-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
93 lines (92 loc) · 2.14 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
85
86
87
88
89
90
91
92
93
/*eslint-env node*/
module.exports = {
purge: ['./src/**/*.jsx', './src/**/*.js', './src/**/*.css'],
darkMode: 'class',
theme: {
screens: {
'xxs': '425px',
'xs': '512px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1440px',
'3xl': '1600px',
'4xl': '1920px',
},
fontSize: {
'xs': '0.75rem',
'sm': '0.875rem',
'base': '1rem',
'lg': '1.125rem',
'xl': '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
},
extend: {
colors: {
'gray': {
100: '#f5f5f5',
200: '#eeeeee',
300: '#e0e0e0',
400: '#bdbdbd',
500: '#9e9e9e',
600: '#757575',
700: '#616161',
800: '#424242',
900: '#212121',
950: '#111111',
},
'orange': {
100: '#fffaf0',
200: '#feebc8',
300: '#fbd38d',
400: '#f6ad55',
500: '#ed8936',
600: '#dd6b20',
700: '#c05621',
800: '#9c4221',
900: '#7b341e',
},
'nubots': {
100: '#FFF1D6',
200: '#FFEBC7',
300: '#FFDD9E',
400: '#FFCC6F',
500: '#F9A50D',
700: '#CC880D',
},
'primary': 'rgba(0, 0, 0, 0.87)',
'primary-inverted': 'rgba(255, 255, 255, 0.87)',
'primary-muted': 'rgba(0, 0, 0, 0.60)',
'primary-muted-inverted': 'rgba(255, 255, 255, 0.60)',
'secondary': 'rgba(0, 0, 0, 0.54)',
'secondary-inverted': 'rgba(255, 255, 255, 0.54)',
'icon': 'rgba(0, 0, 0, 0.54)',
'icon-inverted': 'rgba(255, 255, 255, 0.7)',
'hint': 'rgba(0, 0, 0, 0.38)',
'hint-inverted': 'rgba(255, 255, 255, 0.38)',
},
backgroundColor: {
950: '#111111',
},
padding: {
14: '3.5rem',
26: '6.5rem',
},
maxWidth: {
'screen-xl': '1280px',
},
},
},
variants: {
extend: {
display: ['dark'],
opacity: ['dark'],
},
},
plugins: [],
}