-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
99 lines (94 loc) · 2.31 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
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
91
92
93
94
95
96
97
98
/** @type {import('tailwindcss').Config} */
import { nextui } from "@nextui-org/react"
export default {
content: [
"./src/**/*.{ts,tsx,js,jsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#30cfc7",
foreground: "#ffffff"
},
}
},
},
darkMode: "class",
plugins: [
nextui({
addCommonColors: true,
defaultTheme: "codium-dark",
layout: {},
themes: {
"codium-dark": {
extend: "dark",
layout: {},
colors: {
content1: "#23211f",
content2: "#23211f",
content3: "#23211f",
content4: "#23211f",
// default: {
// DEFAULT: "#232119",
// },
background: {
DEFAULT: "#1a1817",
900: '#f3f2f1',
800: '#d8d8d8',
700: '#bfbfbf',
600: '#a5a5a5',
500: '#8c8c8c',
400: '#727272',
300: '#595959',
200: '#3f3f3f',
100: '#262626',
50: '#0e0c0c',
},
focus: "#ffc38d",
foreground: "#f7e3db",
bgSecondary: {
DEFAULT: "#23211f",
},
highlight: "#403d39",
}
},
"codium-light": {
extend: "light",
layout: {},
colors: {
content1: "#ffffff",
content2: "#ffffff",
content3: "#ffffff",
content4: "#ffffff",
default: {
DEFAULT: "#f8f8f8",
100: "#f9f9f9",
200: "#ffffff"
},
background: {
DEFAULT: "#f2f2f2",
900: '#f3f3f3',
800: '#f5f5f5',
700: '#f8f8f8',
600: '#f9f9f9',
500: '#d9d9d9',
400: '#d5d5d5',
300: '#d2d2d2',
200: '#e7e7e7',
100: '#e5e5e5',
50: '#e1e1e1',
},
focus: "#ffc38d",
foreground: "#404040",
bgSecondary: {
DEFAULT: "#ffffff",
},
highlight: "#e5e5e5",
}
},
}
})
]
}