-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
76 lines (74 loc) · 2.19 KB
/
Copy pathtailwind.config.ts
File metadata and controls
76 lines (74 loc) · 2.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import plugin from "tailwindcss/plugin";
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
muted: "var(--muted)",
"muted-foreground": "var(--muted-foreground)",
card: "var(--card)",
"card-foreground": "var(--card-foreground)",
"card-muted": "var(--card-muted)",
border: "var(--border)",
accent: {
DEFAULT: "var(--accent)",
foreground: "var(--accent-foreground)",
secondary: "var(--accent-secondary)",
soft: "var(--accent-soft)",
},
control: "var(--control)",
"control-hover": "var(--control-hover)",
ring: "var(--ring)",
success: "var(--success)",
warning: "var(--warning)",
destructive: {
DEFAULT: "var(--destructive)",
foreground: "var(--destructive-foreground)",
muted: "var(--destructive-muted)",
},
},
keyframes: {
"fade-in-up": {
"0%": { opacity: "0", transform: "translateY(12px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
"scale-in": {
"0%": { opacity: "0", transform: "scale(0.95)" },
"100%": { opacity: "1", transform: "scale(1)" },
},
shimmer: {
"0%": { backgroundPosition: "-200% 0" },
"100%": { backgroundPosition: "200% 0" },
},
},
animation: {
"fade-in-up": "fade-in-up 0.4s ease-out both",
"scale-in": "scale-in 0.3s ease-out both",
shimmer: "shimmer 1.8s ease-in-out infinite",
},
},
},
plugins: [
require("tailwind-scrollbar")({ nocompatible: true }),
plugin(function({ addBase }) {
addBase({
"*:focus": {
outline: "none",
},
"*:focus-visible": {
outline: "2px solid var(--accent)",
outlineOffset: "2px",
},
});
}),
],
};
export default config;