-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (56 loc) · 1.38 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
module.exports = {
purge: [
'./templates/**/*.html',
'**/templates/**/*.html',
"./**/*.py",
"./**/*.js"
],
theme: {
fontFamily: {
sans: ["Lato", "sans-serif"],
serif: ["Bree Serif", "serif"]
},
// https://github.com/tailwindcss/custom-forms/blob/master/src/defaultOptions.js
customForms: theme => ({
default: {
input: {
'&:focus': {
boxShadow: "0 0 0 3px rgba(218, 97, 55)",
borderColor: theme('color.primary'),
},
},
checkbox: {
'&:focus': {
boxShadow: "0 0 0 3px rgba(218, 97, 55)",
borderColor: theme('color.primary'),
},
color: theme('colors.primary'),
},
radio: {
'&:focus': {
boxShadow: "0 0 0 3px rgba(218, 97, 55)",
borderColor: theme('color.primary'),
},
color: theme('colors.primary'),
},
},
}),
extend: {
colors: {
"primary": "#da6137",
"brown": "#452912",
"secondary" : "#fcf3e5",
"third" : "#b4502c",
"yellow" : "#de7a08",
"orange" : "#ff7800",
"red" : "#e34a26",
"brown" : "#452912",
"dark-brown" : "#0e0700",
"purple" : "#80143b",
"green" : "#5A5527"
},
},
},
variants: {},
plugins: [require('@tailwindcss/ui')]
}