-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (66 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class", // Enable dark mode using 'class'
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
green: {
100: "#2B7860",
200: "#04AD79",
300: "#D8FDF2",
400: "#F5FFFC",
},
blue: {
100: "#2C5282",
200: "#3182CE",
300: "#BEE3F8",
400: "#EBF8FF",
},
red: {
100: "#9B2C2C",
200: "#E53E3E",
300: "#FED7D7",
400: "#FFF5F5",
},
yellow: {
100: "#975A16",
200: "#FACD1D",
300: "#FEFCBF",
400: "#FFFFF0",
},
indigo: {
100: "#434190",
200: "#667EEA",
300: "#C3DAFE",
400: "#EBF4FF",
},
purple: {
100: "#553C9A",
200: "#9F7AEA",
300: "#E9D8FD",
400: "#FAF5FF",
},
gray: {
100: "#131317",
200: "#49494D",
300: "#BBBBBC",
400: "#E8E8E9",
500: "#ECEFF1",
},
cyan: {
100: "#045D73",
200: "#0BC5EA",
300: "#CFFAFE",
400: "#E0FCFF",
},
light: "#F9FAFB",
dark: {
DEFAULT: "#111827", // Primary dark color
100: "#28282C", // Slightly lighter dark shade
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};