-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
105 lines (100 loc) · 2.09 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
94
95
96
97
98
99
100
101
102
103
104
105
const {
colors
} = require('tailwindcss/defaultTheme');
module.exports = {
purge: {
enabled: false,
},
theme: {
container: {
center: true,
padding: '2rem',
},
colors: {
transparent: 'transparent',
black: '#000',
white: '#fff',
'primary': {
50: '#F2F2F2',
100: '#E6E6E6',
200: '#BFBFBF',
300: '#999999',
400: '#4D4D4D',
500: '#000000',
600: '#000000',
700: '#000000',
800: '#000000',
900: '#000000'
},
'secondary': {
50: '#F7FFFE',
100: '#EFFFFD',
200: '#D6FEFB',
300: '#BDFDF8',
400: '#8CFCF2',
500: '#5AFAED',
600: '#51E1D5',
700: '#36968E',
800: '#29716B',
900: '#1B4B47',
},
'accent': {
50: '#FFF3F4',
100: '#FFE6E8',
200: '#FFC1C6',
300: '#FE9CA3',
400: '#FE515E',
500: '#FD0719',
600: '#E40617',
700: '#98040F',
800: '#72030B',
900: '#4C0208',
},
'black': {
100: '#EBEAE9',
200: '#CDCBC9',
300: '#AFABA8',
400: '#726C67',
500: '#362D26',
600: '#312922',
700: '#201B17',
800: '#181411',
900: '#100E0B',
},
'grey': {
100: '#FAFBFC',
200: '#F2F6F6',
300: '#EBF1F1',
400: '#DBE6E7',
500: '#CCDBDC',
600: '#B8C5C6',
700: '#7A8384',
800: '#5C6363',
900: '#3D4242',
},
gray: {
100: '#f7fafc',
200: '#edf2f7',
300: '#e2e8f0',
400: '#cbd5e0',
500: '#a0aec0',
600: '#718096',
700: '#4a5568',
800: '#2d3748',
900: '#1a202c',
},
},
fontFamily: {
display: ['"impact_label_reversedregular"', 'sans-serif'],
body: ['DM Mono', 'monospace']
},
extend: {},
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
],
future: {
removeDeprecatedGapUtilities: true //https://tailwindcss.com/docs/upcoming-changes
},
}