-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (44 loc) · 909 Bytes
/
tailwind.config.js
File metadata and controls
45 lines (44 loc) · 909 Bytes
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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
background: '#010c20',
foreground: '#eff0f2',
terminal: {
100: '#fffff2',
200: '#ecffbf',
300: '#b0ff8c',
400: '#7dff59',
500: '#4AF626',
600: '#17C300',
700: '#009000',
800: '#005D00',
900: '#001100',
},
primary: {
100: '#eeecb3',
200: '#eee875',
300: '#eee537'
}
},
width: {
'80': '20rem'
},
borderRadius: {
semi: '1rem'
}
},
fontFamily: {
sans: ['"Raleway"'],
mono: ['"source code pro"']
}
},
variants: {},
plugins: [
],
};