-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
41 lines (35 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{html,js,ts,jsx,tsx}",
"./react-web/**/*.{html,js,ts,jsx,tsx}",
],
theme: {
extend: {
zIndex: {
max: 9999,
},
colors: {
primary: "hsl(var(--opencx-primary))",
"primary-foreground": "hsl(var(--opencx-primary-foreground))",
foreground: "hsl(var(--opencx-foreground))",
background: "hsl(var(--opencx-background))",
accent: "hsl(var(--opencx-accent))",
"accent-foreground": "hsl(var(--opencx-accent-foreground))",
secondary: "hsl(var(--opencx-secondary))",
"secondary-foreground": "hsl(var(--opencx-secondary-foreground))",
muted: "hsl(var(--opencx-muted))",
"muted-foreground": "hsl(var(--opencx-muted-foreground))",
destructive: "hsl(var(--opencx-destructive))",
"destructive-foreground": "hsl(var(--opencx-destructive-foreground))",
input: "hsl(var(--opencx-input))",
border: "hsl(var(--opencx-border))",
ring: "hsl(var(--opencx-ring))",
},
},
fontFamily: {
inter: ["Inter", "Rubik", "serif", "sans-serif"],
},
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
};