forked from yearn/ape-tax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·79 lines (78 loc) · 1.33 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
const colors = require('tailwindcss/colors');
module.exports = {
darkMode: 'class',
corePlugins: {
ringColor: false,
},
purge: {
content: [
'./pages/**/*.js',
'./components/**/*.js'
],
safelist: [
'dark',
'dark:',
'dark:text-dark-50',
'dark:border-dark-200',
'dark:bg-dark-600',
'dark:bg-dark-400',
'dark:bg-dark-300',
]
},
theme: {
fontFamily: {
mono: ['IBM Plex Mono', 'monospace']
},
colors: {
gray: colors.coolGray,
tag: {
new: '#10B981',
info: '#167df0',
warning: '#fff257',
withdraw: '#EF4444'
},
red: colors.red,
white: colors.white,
black: colors.black,
sky: colors.sky,
error: '#FF005E',
pending: '#FFB800',
success: '#A5DF00',
ygray: {
50: '#F5F5F5',
100: '#E1E1E1',
200: '#DBDBDB',
400: '#7A7A7A',
600: '#767676',
700: '#2c3e50',
900: '#363636',
},
dark: {
900: '#09162E',
600: 'rgb(19,38,75)',
400: 'rgb(24,48,95)',
300: '#2f446f',
200: '#46597e',
100: '#5d6e8f',
50: '#ced3dd',
},
},
extend: {
lineHeight: {
11: '3.25rem',
'120px': '120px'
},
fontSize: {
'xxs': '0.6rem',
'xs': '0.7rem',
'3xl': '2rem',
'7xl': '5rem',
'sm': '0.8rem',
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms')
],
};