forked from google-gemini/gemini-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
49 lines (47 loc) · 1.56 KB
/
Copy pathtailwind.config.ts
File metadata and controls
49 lines (47 loc) · 1.56 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "sans-serif"]
},
boxShadow: {
sidebar: "0 4px 5.25px -2px #10182808"
},
borderRadius: {
pill: "var(--radius-pill)",
m: "var(--radius-m)",
l: "var(--radius-l)",
xs: "var(--radius-xs)"
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
card: "var(--card)",
primary: "var(--primary)",
"primary-foreground": "var(--primary-foreground)",
secondary: "var(--secondary)",
"secondary-foreground": "var(--secondary-foreground)",
accent: "var(--accent)",
"accent-foreground": "var(--accent-foreground)",
muted: "var(--muted)",
"muted-foreground": "var(--muted-foreground)",
border: "var(--border)",
input: "var(--input)",
sidebar: "var(--sidebar)",
"sidebar-foreground": "var(--sidebar-foreground)",
"sidebar-primary": "var(--sidebar-primary)",
"sidebar-primary-foreground": "var(--sidebar-primary-foreground)",
"sidebar-border": "var(--sidebar-border)",
"sidebar-accent": "var(--sidebar-accent)",
"sidebar-accent-foreground": "var(--sidebar-accent-foreground)",
success: "var(--color-success)",
"success-foreground": "var(--color-success-foreground)"
}
}
},
plugins: []
};
export default config;