forked from yearn/yearn-vaults-descriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·74 lines (73 loc) · 1.26 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
const colors = require('tailwindcss/colors');
module.exports = {
corePlugins: {
ringColor: false,
},
darkMode: 'class',
purge: {
content: [
'./pages/**/*.js',
'./components/**/*.js'
],
},
theme: {
fontFamily: {
sans: ['Roboto', 'sans-serif'],
mono: ['IBM Plex Mono', 'monospace']
},
colors: {
red: colors.red,
white: colors.white,
black: colors.black,
yblue: '#0657F9',
fadeWhite: '#F2F2F2',
ygray: {
'50': '#F5F5F5',
100: '#333333',
200: '#4F4F4F',
400: '#BDBDBD',
500: '#E0E0E0',
600: '#F2F2F2',
'700': '#2c3e50',
'900': '#363636',
},
dark: {
900: '#181B21',
600: '#1C2028',
500: '#1E1E1E',
400: '#21252E',
200: '#535353',
100: '#5d6e8f',
50: '#8B8D90',
white: 'rgba(255,255,255,0.9)',
},
},
extend: {
width: {
'64.5': '16.125rem',
'235.5': '58.875rem'
},
maxWidth: {
'64.5': '16.125rem',
'235.5': '58.875rem',
'xl': '552px',
'4xl': '904px',
'6xl': '1200px',
},
maxHeight: {
'max': '4000px',
},
lineHeight: {
'6xl': '64px',
},
fontSize: {
'sm': ['15px', '24px'],
'6xl': ['56px', '64px'],
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms')
],
};