-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
126 lines (125 loc) · 2.88 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: ["class"],
theme: {
colors: {
scarlet: {
"50": "#fff1f0",
"100": "#ffe0dd",
"200": "#ffc5c0",
"300": "#ff9d94",
"400": "#ff6557",
"500": "#ff3523",
"600": "#ff1500",
"700": "#d71200",
"800": "#b11103",
"900": "#92150a",
"950": "#500700",
},
zinc: {
"50": "#fafafa",
"100": "#f4f4f5",
"200": "#e4e4e7",
"300": "#d4d4d8",
"400": "#a1a1aa",
"500": "#71717a",
"600": "#52525b",
"700": "#3f3f46",
"800": "#27272a",
"900": "#18181b",
"950": "#09090b",
},
rose: {
"50": "#fff3fd",
"100": "#ffe6fe",
"200": "#ffccfb",
"300": "#ffa3f5",
"400": "#ff6dee",
"500": "#ff1fec",
"600": "#e316cd",
"700": "#bd0ea7",
"800": "#9a0e87",
"900": "#7e116d",
"950": "#550048",
},
blueLagoon: {
"50": "#e8fffd",
"100": "#c6fffa",
"200": "#94fff5",
"300": "#4afff0",
"400": "#00fff6",
"500": "#00eafd",
"600": "#00b8d3",
"700": "#0092aa",
"800": "#026e81",
"900": "#075f72",
"950": "#003f50",
},
pacificBlue: {
"50": "#ebfffd",
"100": "#cdfffd",
"200": "#a1ffff",
"300": "#60fdff",
"400": "#18f0f8",
"500": "#00d3de",
"600": "#00abbd",
"700": "#088596",
"800": "#106a7a",
"900": "#125867",
"950": "#053b47",
},
cerulean: {
"50": "#f0f9ff",
"100": "#e0f3fe",
"200": "#b9e8fe",
"300": "#7cd7fd",
"400": "#36c4fa",
"500": "#0cadeb",
"600": "#0099dd",
"700": "#016ea3",
"800": "#065d86",
"900": "#0b4d6f",
"950": "#07314a",
},
neonCarrot: {
"50": "#fff8ed",
"100": "#ffefd4",
"200": "#ffdba8",
"300": "#ffc171",
"400": "#ff9933",
"500": "#fe7e11",
"600": "#ef6307",
"700": "#c64808",
"800": "#9d3a0f",
"900": "#7e3110",
"950": "#441606",
},
regentBlue: {
"50": "#f3f7fb",
"100": "#e3edf6",
"200": "#cee1ef",
"300": "#a1c7e0",
"400": "#85b4d5",
"500": "#689ac9",
"600": "#5483bc",
"700": "#4a70ab",
"800": "#415c8c",
"900": "#384d70",
"950": "#263145",
},
},
extend: {
fontFamily: {
sans: ["var(--font-inter)"],
mono: ["var(--font-signika-negative)"],
},
},
},
plugins: [],
};
export default config;