-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (40 loc) · 953 Bytes
/
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js",
],
theme: {
extend: {
minHeight: {
custom: "calc(100vh - 4rem)",
},
colors: {
main: "#1c1c1c",
border: "#2e2e2e",
mainText: "#c6c6c6",
secondaryText: "#4dd08d",
mainButton: "#3C9064",
mainButtonBorder: "#4dd18e",
mainButtonHover: "#3d7e5a",
grayButton: "#2e2e2e",
grayButtonHover: "#3D3D3D",
grayButtonOutline: "#3e3e3e",
hoverBG: "#282828",
inputBG: "#212121",
panelBG: "#232323",
inputBorder: "#343434",
inputHover: "#424242",
cardColor: "#232323",
darkerbg: "#17161F",
chatBG: "#232323",
borderColor: "#2d2c3c",
hoverColor: "#272636",
},
},
},
plugins: [],
};
export default config;