forked from yearn/yearn-vaults-descriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
executable file
·62 lines (61 loc) · 1.03 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
const colors = require('tailwindcss/colors');
module.exports = {
corePlugins: {
ringColor: false,
},
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',
ygray: {
'50': '#F5F5F5',
100: '#333333',
200: '#4F4F4F',
400: '#BDBDBD',
500: '#E0E0E0',
600: '#F2F2F2',
'700': '#2c3e50',
'900': '#363636',
}
},
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': '1000px',
},
lineHeight: {
'6xl': '64px',
},
fontSize: {
'sm': ['15px', '24px'],
'6xl': ['56px', '64px'],
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms')
],
};