-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (69 loc) · 2.23 KB
/
Copy pathtailwind.config.js
File metadata and controls
69 lines (69 loc) · 2.23 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
colors: {
border: "rgb(var(--color-border) / <alpha-value>)",
input: "rgb(var(--color-input) / <alpha-value>)",
ring: "rgb(var(--color-ring) / <alpha-value>)",
background: "rgb(var(--color-background) / <alpha-value>)",
foreground: "rgb(var(--color-foreground) / <alpha-value>)",
primary: {
DEFAULT: "rgb(var(--color-primary) / <alpha-value>)",
foreground: "rgb(var(--color-primary-foreground) / <alpha-value>)",
},
secondary: {
DEFAULT: "rgb(var(--color-secondary) / <alpha-value>)",
foreground: "rgb(var(--color-secondary-foreground) / <alpha-value>)",
},
destructive: {
DEFAULT: "rgb(var(--color-destructive) / <alpha-value>)",
foreground:
"rgb(var(--color-destructive-foreground) / <alpha-value>)",
},
muted: {
DEFAULT: "rgb(var(--color-muted) / <alpha-value>)",
foreground: "rgb(var(--color-muted-foreground) / <alpha-value>)",
},
accent: {
DEFAULT: "rgb(var(--color-accent) / <alpha-value>)",
foreground: "rgb(var(--color-accent-foreground) / <alpha-value>)",
},
popover: {
DEFAULT: "rgb(var(--color-popover) / <alpha-value>)",
foreground: "rgb(var(--color-popover-foreground) / <alpha-value>)",
},
card: {
DEFAULT: "rgb(var(--color-card) / <alpha-value>)",
foreground: "rgb(var(--color-card-foreground) / <alpha-value>)",
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
fontFamily: {
sans: ["var(--font-sans)", "ui-sans-serif", "system-ui", "sans-serif"],
mono: [
"var(--font-mono)",
"ui-monospace",
"SF Mono",
"Monaco",
"Inconsolata",
"Roboto Mono",
"monospace",
],
},
},
},
plugins: [],
};