-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
54 lines (52 loc) · 1.23 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
import type { Config } from "tailwindcss";
import { nextui } from "@nextui-org/react";
import tailwindcssAnimate from "tailwindcss-animate";
/** @type {import('tailwindcss').Config} */
const config: Config = {
content: [
"./src/ui/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/ui/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
flex: {
2: "2 2 0%",
3: "3 3 0%",
4: "4 4 0%",
5: "5 5 0%",
},
},
},
darkMode: "class",
plugins: [
nextui({
themes: {
light: {
colors: {
primary: {
DEFAULT: "#2945FA",
100: "#FBFBFB",
200: "#D2E1F7",
300: "#9FBFF4",
400: "#465EB7",
500: "#212E57",
},
secondary: {
DEFAULT: "#EFAD29",
100: "#FDF8E9",
200: "#F8DE90",
300: "#EFAD29",
400: "#C06E0E",
500: "#7F3F14",
},
},
},
},
}),
tailwindcssAnimate,
],
};
export default config;