-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
62 lines (62 loc) · 1.29 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
60
61
62
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
borderRadius: {
DEFAULT: "5px",
sm: "4px",
md: "6px",
lg: "5px",
full: "50px",
},
fontFamily: {
sans: ["PPNeueMontreal-Medium", "Inter", "sans-serif"],
},
extend: {
screens: {
xs: "420px",
betterhover: { raw: "(hover: hover)" },
},
fontFamily: {
"mtl-bold": ["PPNeueMontreal-Bold"],
"mtl-medium": ["PPNeueMontreal-Medium"],
},
transitionDuration: {
250: "250ms",
},
zIndex: {
"-1": "-1",
},
spacing: {
yeat: "0.625rem",
},
aspectRatio: {
"3/2": "3 / 2",
"2/3": "2 / 3",
},
colors: {
// yolk: "#CCFF00",
yolk: "#0EFC5F",
// eggshell: "#F8F8F8",
eggshell: "#F5F7FA",
// eggshell: "#f6fafd",
metro: "#00704F",
stone: {
DEFAULT: "#A4A4A4",
light: "#cbd6e0",
blue: "#5f6486",
},
dark: "#030303",
},
},
},
plugins: [
require("tailwindcss-radix")({
variantPrefix: "rdx",
}),
require("tailwindcss-animate"),
require("tailwindcss-3d")({ legacy: true }),
],
};