-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (53 loc) · 1.22 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
const { nextui } = require("@nextui-org/react");
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
darkMode: "class",
plugins: [nextui({
defaultTheme: "light",
themes: {
"verdi-gris": {
colors: {
background: "#fff",
foreground: "#ffffff",
primary: {
50: "#fff",
100: "#ecfdf5",
200: "#bbf7d0",
300: "#86efac",
400: "#4ade80",
500: "#10b981",
600: "#059669",
700: "#065f46",
800: "#064e3b",
900: "#022c22",
DEFAULT: "#4CB5AE",
foreground: "#ffffff",
},
focus: "#4CB5AE",
},
layout: {
disabledOpacity: "0.3",
radius: {
small: "4px",
medium: "6px",
large: "8px",
},
borderWidth: {
small: "1px",
medium: "2px",
large: "3px",
},
},
},
},
})],
}