-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (35 loc) · 969 Bytes
/
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
const { colors } = require("tailwindcss/defaultTheme");
module.exports = {
theme: {
extend: {
colors: {
brand: colors.green["400"],
"brand-dark": colors.green["500"],
"gray-lighter": colors.gray["200"],
"gray-dark": colors.gray["600"],
"gray-darker": colors.gray["700"],
},
},
customForms: (theme) => ({
default: {
"input, textarea, multiselect, select": {
borderRadius: theme("borderRadius.sm"),
},
"input, textarea, multiselect": {
color: theme("colors.gray.600"),
borderColor: theme("colors.gray.200"),
backgroundColor: theme("colors.gray.100"),
"&:focus": {
color: theme("colors.gray.800"),
backgroundColor: theme("colors.white"),
},
},
select: {
backgroundColor: theme("colors.gray.100"),
},
},
}),
},
variants: {},
plugins: [],
};