-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
52 lines (52 loc) · 1.02 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
primary: {
50: "#1DA1F2",
100: "#1A8CD8",
},
light: {
50: "#FFFFFF",
100: "#F3F4F6",
200: "#E5E7EB",
300: "#D1D5DB",
400: "#9CA3AF",
},
dark: {
50: "#4B5563",
100: "#374151",
200: "#1F2937",
300: "#111827",
400: "#030712",
},
gray: {
50: "#F5F8FA",
100: "#E1E8ED",
200: "#AAB8C2",
300: "#657786",
},
red: {
50: "#EF4444",
100: "#DC2626",
200: "#B91C1C",
},
green: {
50: "#22C55E",
100: "#16A34A",
},
yellow: {
50: "#FACC15",
100: "#EAB308",
},
blue: {
50: "#3B82F6",
100: "#2563EB",
},
},
extend: {},
},
plugins: [require("tailwind-scrollbar")({ nocompatible: true })],
};