forked from vivek9patel/vivek9patel.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (59 loc) · 1.37 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
module.exports = {
mode: 'jit',
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
backgroundColor: theme => ({
...theme('colors'),
'ub-grey': '#111111',
'ub-warm-grey': "#AEA79F",
'ub-cool-grey': "#333333",
'ub-orange': "#E95420",
'ub-lite-abrgn': "#77216F",
'ub-med-abrgn': "#5E2750",
'ub-drk-abrgn': "#2C001E",
'ub-window-title': "#201f1f",
'ub-gedit-dark': "#021B33",
'ub-gedit-light': "#003B70",
'ub-gedit-darker': "#010D1A",
}),
textColor: theme => ({
...theme('colors'),
'ubt-grey': '#F6F6F5',
'ubt-warm-grey': "#AEA79F",
'ubt-cool-grey': "#333333",
'ubt-blue': "#3465A4",
'ubt-green': "#4E9A06",
'ubt-gedit-orange': "#F39A21",
'ubt-gedit-blue': "#50B6C6",
'ubt-gedit-dark': "#003B70",
}),
borderColor: theme => ({
...theme('colors'),
DEFAULT: theme('colors.gray.300', 'currentColor'),
'ubb-orange': '#E95420'
}),
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
},
minHeight: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
},
extend: {
zIndex: {
'-10': '-10',
}
},
},
variants: {
extend: {},
},
plugins: [],
}