-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
55 lines (54 loc) · 1.15 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
import { nextui } from "@nextui-org/react";
import daisyui from "daisyui";
import tailwindScrollbar from "tailwind-scrollbar";
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./components/**/*.{ts,tsx,mdx}",
"./app/**/*.{ts,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: "#A27B5C",
secondary: "#3F4E4F",
tertiary: "#DCD7C9",
accent: {
yellow: "#FFA90B",
green: "#22D7A6",
red: "#F14C35",
blue: "#129BFF",
purple: "#5A3CF3",
},
},
backgroundImage: {},
screens: {
xs: "400px",
},
},
},
plugins: [
daisyui,
tailwindScrollbar,
nextui({
prefix: "nui-",
addCommonColors: false,
layout: { radius: { large: "0px", medium: "0px", small: "0px" } },
themes: {
light: {
colors: {
danger: "#F14C35",
},
},
},
}),
],
daisyui: {
themes: false,
darkTheme: false,
prefix: "dui-",
logs: false,
},
};
export default config;