-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
72 lines (72 loc) · 1.42 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", "./node_modules/flowbite-react/lib/**/*.js"],
safelist: [
{
pattern: /grid-cols-/,
variants: ["sm", "md", "lg", "xl", "2xl"],
},
],
theme: {
fontFamily: {
sans: ["Helvetica", "ui-sans-serif"],
},
extend: {
height: {
main: "calc(100vh)",
},
minHeight: {
content: "calc(100vh - 230px)",
},
transitionProperty: {
height: "height",
},
colors: {
layout: {
primary: "#ffffff",
secondary: "#092f62",
},
menu: {
text: "#092f62",
active: "#092f62",
hover: "#b7bfd1",
separator: "#f7f7f9",
},
card: {
body: {
primary: "#f7f7f9",
secondary: "#092f62",
seperator: "#1e293b",
},
content: {
primary: "#e7e7ea", // e7e7ea
secondary: "#f7f7f9",
highlight: "#ff293b",
},
},
text: {
header: "#092f62",
subheader: "#677180",
active: "#ff44dd",
primary: "#092f62",
secondary: "#e2e8f0",
warning: "#ef4444",
success: "#22c55e",
},
table: {
header: {
primary: "#f7f7f9",
secondary: "#d1d5db",
},
row: {
primary: "#f7f7f9",
secondary: "#d1d5db",
hover: "#d1d5db",
},
},
},
},
},
darkMode: "class",
plugins: [require("flowbite/plugin")({ charts: true })],
};