-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.25 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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: {
content: ['./pages/**/*.js'],
options: {
whitelist: [],
},
},
theme: {
extend: {
fontFamily: {
spacemono:
'"Space Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
montserrat: 'Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";'
},
colors: {
primary: {
50: '#F1FFF7',
100: '#CDFEE1',
200: '#ABFECE',
300: '#8EFCBC',
400: '#75F8AC',
500: '#5DF59C',
600: '#5BEC97',
700: '#48E086',
800: '#27D36D',
900: '#1FC061',
},
gray: {
50: '#DADADD',
100: '#C7C8CC',
200: '#ABADB4',
300: '#90939C',
400: '#6C6F79',
500: '#595B63',
600: '#494950',
700: '#3A3B41',
800: '#28292D',
900: '#232326',
}
}
},
},
variants: {},
plugins: [require('@tailwindcss/aspect-ratio')],
};