-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
65 lines (60 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* @format
* @type {import('tailwindcss').Config}
*/
const config = {
content: [
"./src/**/*.{html,js,svelte,ts}",
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
],
darkMode: "class",
theme: {
extend: {
colors: {
// flowbite-svelte
// primary: {
// 50: "#ebf5ff",
// 100: "#fff1ee",
// 200: "#ffe4de",
// 300: "#ffd5cc",
// 400: "#ffbcad",
// 500: "#fe795d",
// 600: "#ef562f",
// 700: "#eb4f27",
// 800: "#d3330a",
// 900: "#d3330a",
// },
// blue
primary: {
50: "#eff6ff",
100: "#dbeafe",
200: "#bfdbfe",
300: "#93c5fd",
400: "#60a5fa",
500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
800: "#1e40af",
900: "#1e3a8a",
},
// // teal
// primary: {
// 50: "#f0fdfa",
// 100: "#ccfbf1",
// 200: "#99f6e4",
// 300: "#5eead4",
// 400: "#2dd4bf",
// 500: "#14b8a6",
// 600: "#0d9488",
// 700: "#0f766e",
// 800: "#115e59",
// 900: "#134e4a",
// },
// indigo
// primary: {"50":"#eef2ff","100":"#e0e7ff","200":"#c7d2fe","300":"#a5b4fc","400":"#818cf8","500":"#6366f1","600":"#4f46e5","700":"#4338ca","800":"#3730a3","900":"#312e81"}
},
},
},
plugins: [require("flowbite/plugin")],
};
module.exports = config;