-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (58 loc) · 1.24 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
module.exports = {
mode: 'jit',
purge: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}', './node_modules/tw-elements/dist/js/**/*.js'],
darkMode: 'class', // or 'media' or 'class'
theme: {
container: {
center: true
},
extend: {
colors: {
...require('daisyui/colors'),
gray: {
50: '#fafafa',
300: '#d4d4d8',
400: '#a1a1aa',
600: '#52525b',
700: '#242526',
800: '#191a1b',
900: '#131214'
},
// These are capitalised because I copied them from Figma. Not sure which is more standard. /shrug
lights: {
100: '#FBFFFC',
200: '#F9F0DF',
300: '#FDA360',
400: '#AF3408',
500: '#79211A',
600: '#000500'
},
darks: {
100: '#FFFFFF',
150: '#C4C4C4',
200: '#3A3D40',
300: '#1E1F23',
400: '#191B1F'
},
chain: {
ethereum: '#627eea',
polygon: '#8247e5',
optimism: '#ff3856',
arbitrum: '#28a0f0',
boba: '#d7fe44'
}
},
fontSize: {
xxs: '0.5rem'
},
fontFamily: {
shibui: ["'Sora'", 'sans-serif', 'Helvetica', 'Arial'],
inter: ["'Inter'", 'sans-serif']
}
}
},
variants: {
extend: {}
},
plugins: [require('daisyui'), require('tw-elements/dist/plugin')]
};