-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
82 lines (82 loc) · 1.87 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
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
77
78
79
80
81
82
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/app/**/*.{ts,tsx}",
"./src/components/**/*.{ts,tsx}",
"./src/theme/**/*.{ts,tsx}",
],
theme: {
extend: {
colors: {
border: {
DEFAULT: "#E4E4E7",
dark: "#27272A",
},
input: {
DEFAULT: "#E4E4E7",
dark: "#27272A",
},
ring: {
DEFAULT: "#18181B",
dark: "#D4D4D8",
},
background: {
DEFAULT: "#FFFFFF",
dark: "#09090B",
},
foreground: {
DEFAULT: "#09090B",
dark: "#FAFAFA",
},
primary: {
DEFAULT: "#18181B",
dark: "#FAFAFA",
foreground: "#FAFAFA",
"foreground-dark": "#18181B",
},
secondary: {
DEFAULT: "#F4F4F5",
dark: "#27272A",
foreground: "#18181B",
"foreground-dark": "#FAFAFA",
},
destructive: {
DEFAULT: "#EF4444",
dark: "#7F1D1D",
foreground: "#FAFAFA",
"foreground-dark": "#FAFAFA",
},
muted: {
DEFAULT: "#F4F4F5",
dark: "#27272A",
foreground: "#71717A",
"foreground-dark": "#A1A1AA",
},
accent: {
DEFAULT: "#F4F4F5",
dark: "#27272A",
foreground: "#18181B",
"foreground-dark": "#FAFAFA",
},
popover: {
DEFAULT: "#FFFFFF",
dark: "#09090B",
foreground: "#09090B",
"foreground-dark": "#FAFAFA",
},
card: {
DEFAULT: "#FFFFFF",
dark: "#09090B",
foreground: "#09090B",
"foreground-dark": "#FAFAFA",
},
},
borderRadius: {
sm: "1.5",
DEFAULT: "4.5",
lg: "6",
xl: "12",
},
},
},
};