-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 1.15 KB
/
tailwind.config.js
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./components/**/*.{ts,tsx}",
"./tabs/**/*.{ts,tsx}",
"./sidepanel.tsx"
],
theme: {
extend: {
colors: {
primary: "#0066FF",
"primary-hover": "#0052CC",
border: "#E5E5E5",
background: "#FFFFFF",
"background-secondary": "#FAFAFA",
"background-tertiary": "#F5F5F5",
text: {
primary: "#333333",
secondary: "#666666",
tertiary: "#999999"
},
success: "#5fe65fff",
error: "#e43636ff"
},
spacing: {
"sidebar": "360px"
},
animation: {
"slide-in": "slideIn 0.3s cubic-bezier(0.4, 0.0, 0.2, 1)",
"slide-out": "slideOut 0.3s cubic-bezier(0.4, 0.0, 0.2, 1)"
},
keyframes: {
slideIn: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0)" }
},
slideOut: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(100%)" }
}
}
}
},
plugins: [require("tailwindcss-animate")]
}