-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1012 Bytes
/
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
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
primary: {
50: '#f3f3f3',
100: '#e8e8e8',
200: '#c5c5c5',
300: '#a3a3a3',
400: '#5d5d5d',
500: '#181818',
600: '#161616',
700: '#121212',
800: '#0e0e0e',
900: '#0c0c0c',
},
secondary: {
50: '#faf9f7',
100: '#f5f2ef',
200: '#e6dfd8',
300: '#d6ccc1',
400: '#b8a592',
500: '#997f63',
600: '#8a7259',
700: '#735f4a',
800: '#5c4c3b',
900: '#4b3e31',
},
tertiary: {
50: '#f3f4f5',
100: '#e7e9eb',
200: '#c2c8cd',
300: '#9da6ae',
400: '#546472',
500: '#0B2135',
600: '#0a1e30',
700: '#081928',
800: '#071420',
900: '#05101a',
},
},
},
},
plugins: [],
};