-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
80 lines (79 loc) · 1.91 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
import { nextui } from "@nextui-org/react";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
mont: ["var(--font-mont)"],
},
colors: {
border: "#e4e4e7",
input: "#e4e4e7",
ring: "#18181b",
background: "#ffffff",
foreground: "#0a0a0a",
primary: {
DEFAULT: "#18181b",
foreground: "#fafafa",
},
secondary: {
DEFAULT: "#f4f4f5",
foreground: "#0a0a0a",
},
destructive: {
DEFAULT: "#ef4444",
foreground: "#fafafa",
},
muted: {
DEFAULT: "#f4f4f5",
foreground: "#71717a",
},
accent: {
DEFAULT: "#f4f4f5",
foreground: "#18181b",
},
popover: {
DEFAULT: "#ffffff",
foreground: "#09090b;",
},
card: {
DEFAULT: "#ffffff",
foreground: "#09090b",
},
},
borderRadius: {
xl: `12px`,
lg: `8px`,
md: `6px`,
sm: "4px",
},
keyframes: {
"accordion-down": {
from: { height: 0 },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [
require("tailwindcss-animate"),
require("@tailwindcss/typography"),
nextui(),
require("daisyui"),
],
};
export default config;