-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
90 lines (88 loc) · 2.26 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
81
82
83
84
85
86
87
88
89
90
import type { Config } from 'tailwindcss'
import { nextui, colors } from '@nextui-org/react'
import tailwind3d from 'tailwindcss-3d'
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: {
}
},
darkMode: "class",
plugins: [
nextui({
themes: {
light: {
colors: {
primary: {
DEFAULT: "#FFCC00",
50: "#FFFAF5",
100: "#FFF3E0",
200: "#FFE7B8",
300: "#FFDA75",
400: "#FFCC00",
500: "#FAB700",
600: "#F0A000",
700: "#DB8400",
800: "#C26700",
900: "#994700",
foreground: "#000000",
},
secondary: {
DEFAULT: "#00E6A1",
50: "#DBFFED",
100: "#B8FFE0",
200: "#00FFA2",
300: "#00E6A1",
400: "#00CF9E",
500: "#00BD84",
600: "#00AD6E",
700: "#009957",
800: "#008040",
900: "#005C28",
foreground: "#000000",
},
},
},
dark: {
colors: {
primary: {
DEFAULT: "#FFCC00",
50: "#FFF9F5",
100: "#FFF2E5",
200: "#FFE7C2",
300: "#FFDA85",
400: "#FFCC00",
500: "#FFB405",
600: "#FA9600",
700: "#F07800",
800: "#D65600",
900: "#AD3400",
foreground: "#000000",
},
secondary: {
DEFAULT: "#00E6A1",
50: "#DBFFED",
100: "#B8FFE0",
200: "#00FFA2",
300: "#00E6A1",
400: "#00CF9E",
500: "#00BD84",
600: "#00AD6E",
700: "#009957",
800: "#008040",
900: "#005C28",
foreground: "#000000",
},
},
},
},
}),
tailwind3d({ legacy: true })
],
}
export default config