-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 970 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
module.exports = {
purge: ['src/public/**/*.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
50: '#fbf5e1',
100: '#ede1c1',
200: '#dfce9d',
300: '#d1ba7a',
400: '#c4a655',
500: '#aa8d3b',
600: '#846e2d',
700: '#5f4e1e',
800: '#3a2f0f',
900: '#161000',
},
secondary: {
50: '#ecf1fe',
100: '#cdd4e7',
200: '#adb7d2',
300: '#8d9abf',
400: '#6c7dac',
500: '#536492',
600: '#404d72',
700: '#2d3752',
800: '#1a2133',
900: '#050b17',
},
gold: '#fbc740',
silver: '#a8a9ad',
bronze: '#bfa865',
},
},
fontFamily: {
downcome: ['Downcome', 'sans-serif'],
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
};