-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
66 lines (57 loc) · 1.33 KB
/
tailwind.config.js
File metadata and controls
66 lines (57 loc) · 1.33 KB
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
import flowbitePlugin from "flowbite/plugin";
import typography from "@tailwindcss/typography";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
dark: {
background: "#0f1219",
surface: "#1a1f2e",
input: "#141824",
},
background: {
primary: "#161819",
secondary: "#383838",
},
highlight: {
primary: "#5437DC",
secondary: "#2f81f7d9",
},
link: {
primary: "#292929",
},
"dark-background": "#161819",
"secondary-background": "#383838",
"header-background": "#292929",
"border-dark-primary": "#30363d",
"button-hover-dark": "#21262c",
button: {
primary: "#5437DC",
},
icon: {
gray: "#7d8590",
"dark-gray": "#646A73",
},
},
typography: {
DEFAULT: {
css: {
color: "#fff",
h1: {
color: "#fff",
},
a: {
color: "#3182ce",
"&:hover": {
color: "#2c5282",
},
},
},
},
},
},
},
plugins: [flowbitePlugin, typography],
};