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