forked from bitcoin-dev-project/bitcoin-dev-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
79 lines (77 loc) · 2.45 KB
/
tailwind.config.ts
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
73
74
75
76
77
78
79
import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}"
],
darkMode: "class",
theme: {
extend: {
colors: {
orange: {
DEFAULT: "#f1760f",
"50": "#fff8eb",
"100": "#fde9c8",
"200": "#fbd28c",
"300": "#f9b450",
"400": "#f7931a",
"500": "#f1760f",
"600": "#d65309",
"700": "#b1360c",
"800": "#902b10",
"900": "#762311",
"950": "#440f04"
},
white: {
DEFAULT: "#FFF",
"50": "#FAFAFA",
"100": "#FAFAFA",
"200": "#FAFAFA",
"300": "#FAFAFA",
"400": "#FAFAFA",
"500": "#FAFAFA",
"600": "#FAFAFA",
"700": "#FAFAFA",
"800": "#FAFAFA",
"900": "#FAFAFA",
"950": "#FAFAFA"
},
gray: {
DEFAULT: "#696a71",
"50": "#f5f5f6",
"100": "#e5e5e8",
"200": "#cfd0d2",
"300": "#adaeb3",
"400": "#84858c",
"500": "#696a71",
"600": "#595961",
"700": "#4c4d52",
"800": "#434347",
"900": "#3b3b3e",
"950": "#1c1c1e"
},
black: {
DEFAULT: "#1c1c1e",
"50": "#f5f5f6",
"100": "#e5e5e8",
"200": "#cfd0d2",
"300": "#adaeb3",
"400": "#84858c",
"500": "#696a71",
"600": "#595961",
"700": "#4c4d52",
"800": "#434347",
"900": "#3b3b3e",
"950": "#1c1c1e"
}
},
fontFamily: {
brawler: ["var(--brawler-font)"],
inter: ["var(--inter-font)"]
}
}
},
plugins: []
}
export default config