forked from chec/commercejs-chopchop-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 1021 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
38
39
40
41
42
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: ["./{components,pages}/**/*.js"],
theme: {
extend: {
colors: {
clementine: "#EF7300",
tumbleweed: "#D9A876",
"hawkes-blue": "#C7DDFD",
asparagus: "#789750",
goldenrod: "#FFCE70",
black: "#150703",
"faded-black": "rgba(21,7,3,0.6)",
"ecru-white": "#FAF8F3",
"white-rock": "#E8E0CF",
},
height: {
112: "28rem",
},
rotate: {
'-25': '-25deg',
},
boxShadow: {
'thank-you': '-2.63365px 5.92572px 8.55938px rgba(0, 0, 0, 0.25)',
},
},
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
serif: ["'EB Garamond'", ...defaultTheme.fontFamily.serif],
},
},
variants: {
extend: {
backgroundColor: ["checked"],
borderColor: ["checked"],
borderRadius: ["hover"],
fontStyle: ["hover"],
textColor: ["checked"],
},
},
};