-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.02 KB
/
Copy pathtailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
black: {
DEFAULT: "#10161a",
},
gray: {
1: "#5c7080",
2: "#738694",
3: "#8a9ba8",
4: "#a7b6c2",
5: "#bfccd6",
},
"dark-gray": {
DEFAULT: "#1e293b",
hovered: "#223242",
active: "#293949",
},
red: {
DEFAULT: "#eb5757",
},
blue: {
DEFAULT: "#2f80ed",
muted: "#263d5f",
"muted-hovered": "#1E314C",
},
orange: {
1: "#E8B376",
2: "#372E23",
3: "#6A5848",
},
},
fontSize: {
header: [
"28px",
{
fontWeight: "bold",
},
],
title: [
"20px",
{
fontWeight: "500",
},
],
},
},
},
plugins: [],
};