-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
63 lines (63 loc) · 2.33 KB
/
Copy pathtailwind.config.js
File metadata and controls
63 lines (63 loc) · 2.33 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/**/*.{js,ts,jsx,tsx,html}',
],
theme: {
extend: {
colors: {
background: 'oklch(var(--background) / <alpha-value>)',
foreground: 'oklch(var(--foreground) / <alpha-value>)',
card: {
DEFAULT: 'oklch(var(--card) / <alpha-value>)',
foreground: 'oklch(var(--card-foreground) / <alpha-value>)',
},
popover: {
DEFAULT: 'oklch(var(--popover) / <alpha-value>)',
foreground: 'oklch(var(--popover-foreground) / <alpha-value>)',
},
primary: {
DEFAULT: 'oklch(var(--primary) / <alpha-value>)',
foreground: 'oklch(var(--primary-foreground) / <alpha-value>)',
},
secondary: {
DEFAULT: 'oklch(var(--secondary) / <alpha-value>)',
foreground: 'oklch(var(--secondary-foreground) / <alpha-value>)',
},
muted: {
DEFAULT: 'oklch(var(--muted) / <alpha-value>)',
foreground: 'oklch(var(--muted-foreground) / <alpha-value>)',
},
accent: {
DEFAULT: 'oklch(var(--accent) / <alpha-value>)',
foreground: 'oklch(var(--accent-foreground) / <alpha-value>)',
},
destructive: {
DEFAULT: 'oklch(var(--destructive) / <alpha-value>)',
foreground: 'oklch(var(--destructive-foreground) / <alpha-value>)',
},
success: {
DEFAULT: 'oklch(var(--success) / <alpha-value>)',
foreground: 'oklch(var(--success-foreground) / <alpha-value>)',
},
warning: {
DEFAULT: 'oklch(var(--warning) / <alpha-value>)',
foreground: 'oklch(var(--warning-foreground) / <alpha-value>)',
},
border: 'oklch(var(--border) / <alpha-value>)',
input: 'oklch(var(--input) / <alpha-value>)',
ring: 'oklch(var(--ring) / <alpha-value>)',
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
fontFamily: {
sans: ['"Geist Mono"', 'ui-monospace', 'SFMono-Regular', '"SF Mono"', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
mono: ['"Geist Mono"', 'ui-monospace', 'SFMono-Regular', '"SF Mono"', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
},
},
},
plugins: [],
};