-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
50 lines (46 loc) · 1.2 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: ["Roboto", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
},
extend: {
transitionProperty: {
'width': 'width',
},
colors: {
primary: "#f8b591",
secondary: "#faeeae",
text: "#263238",
hoverColor: "#FF9A3E",
cardBorder: "#cfd8dc",
darkBg: "#000000",
darkText: "#e7e9ea",
darkCard: "#202327",
lightBorderColor: "#eff3f4",
darkBorderColor: "#2f3336",
darkCardBorder: "#656e70",
darkHover: "rgba(231,233,234,0.1)",
"overlay-color": "#656e70",
},
keyframes: {
chevronMove: {
"0%": { transform: "translateX(0px)" },
"40%": { transform: "translateX(4px)" },
"60%": { transform: "translateX(8px)" },
},
},
animation: {
chevronMove: "chevronMove 2s ease-in-out infinite",
},
},
},
darkMode: "class",
variants: { display: ["responsive", "hover", "focus"] },
plugins: [require("@tailwindcss/forms")],
};