-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (37 loc) · 1.12 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
module.exports = {
theme: {
extend: {
colors: {
'gold-100': '#fbf1de',
'gold-200': '#efd69d',
'gold-300': '#e7c97c',
'gold-400': '#debc5b',
'gold-500': '#d4af37',
'gold-600': '#ae8f30',
'gold-700': '#897129',
'gold-800': '#655421',
'gold-900': '#251f11',
/*
* Credit Card colors
*/
'cc-amex-500': '#002663',
'cc-mastercard-500': '#000066',
'cc-visa-500': '#1a1f71',
},
width: {
'1/7': '14.2857143%',
'2/7': '28.5714286%',
'3/7': '42.8571429%',
'4/7': '57.1428571%',
'5/7': '71.4285714%',
'6/7': '85.7142857%'
}
}
},
variants: {
backgroundColor: ['responsive', 'odd', 'even', 'hover', 'focus'],
borderWidth: ['responsive', 'last', 'hover', 'focus'],
margin: ['responsive', 'last']
},
plugins: []
};