-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,vue}"],
theme: {
extend: {
boxShadow: {
base: "1px 1px 5px 0px var(--shadowColor)",
},
dropShadow: {
base: "1px 2px 4px rgba(112, 112, 140, 0.15)",
},
colors: {
primary: "var(--primary)",
"darken-primary": "var(--darkenPrimary)",
"body-color": "var(--bodyBackground)",
"card-color": "var(--cardBackground)",
"text-primary": "var(--textPrimary)",
"text-secondary": "var(--textSecondary)",
"border-color": "var(--borderColor)",
"hover-color": "var(--hoverColor)",
"shadow-color": "var(--shadowColor)",
red: {
450: "#F65077",
},
},
sepia: {
base: "var(--sepia)",
},
borderColor: {
DEFAULT: "var(--borderColor)",
},
keyframes: {
scaleIn: {
"0%": {
transform: "scale(0)",
opacity: "0",
},
"100%": {
transform: "scale(1)",
opacity: "1",
},
},
},
animation: {
"scale-in": "scaleIn 0.2s ease-out",
},
},
},
plugins: ["prettier-plugin-tailwindcss"],
}