-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
106 lines (99 loc) · 2.02 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
const isProduction = EmberApp.env() === 'production';
const gradient = require('./tailwind/plugins/gradient');
module.exports = {
purge: {
enabled: isProduction,
content: [
'./app/index.html',
'./app/components/**/*.hbs',
'./app/templates/**/*.hbs'
]
},
theme: {
colors: {
transparent: 'transparent',
'acquia-blue': '#31A9E1',
black: '#000000',
'expel-green': '#07a75c',
navy: '#00213B',
'navy-light': '#073256',
'netflix-red': '#E50914',
gold: '#BBA46F',
grey: '#5F6976',
'grey-light': '#909BA0',
'grey-transparent': 'rgba(236, 243, 246, 50)',
'jebbit-green': '#7ec0b2',
red: '#EF898B',
'swach-purple': '#0A0038',
white: '#FFFFFF'
},
fill: (theme) => ({
white: theme('colors.white')
}),
stroke: (theme) => ({
white: theme('colors.white')
}),
maxWidth: {
xxs: '13rem',
xs: '20rem',
sm: '24rem',
md: '28rem',
lg: '32rem',
xl: '36rem',
'2xl': '42rem',
'3xl': '48rem',
'4xl': '56rem',
'5xl': '64rem',
'6xl': '72rem',
'7xl': '80rem',
'8xl': '90rem',
'9xl': '100rem',
full: '100%'
},
minHeight: {
0: '0',
80: '20rem',
full: '100%',
screen: '100vh'
},
spacing: {
px: '1px',
0: '0',
1: '0.25rem',
2: '0.5rem',
3: '0.75rem',
4: '1rem',
5: '1.25rem',
6: '1.5rem',
8: '2rem',
10: '2.5rem',
12: '3rem',
16: '4rem',
20: '5rem',
24: '6rem',
32: '8rem',
40: '10rem',
48: '12rem',
56: '14rem',
64: '16rem',
72: '18rem',
80: '20rem',
88: '22rem',
96: '24rem',
104: '26rem',
140: '36rem'
}
},
variants: {},
plugins: [
gradient({
gradients: {
brokermate: ['#3FB7E6', '#782599']
}
})
],
corePlugins: {
container: false
}
};