-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1.65 KB
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 1.65 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
"./lib/**/*.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
darkMode: "class",
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>)",
},
card: {
DEFAULT: "rgb(var(--color-card) / <alpha-value>)",
foreground: "rgb(var(--color-card-foreground) / <alpha-value>)",
},
},
},
},
plugins: [],
};