-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
52 lines (46 loc) · 882 Bytes
/
tailwind.config.ts
File metadata and controls
52 lines (46 loc) · 882 Bytes
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
import type { Config } from "tailwindcss";
import colors from "tailwindcss/colors";
const slate = {
...colors.slate,
450: "#7E8FA6",
500: "#6B7C95",
550: "#586981",
600: "#45566D",
650: "#3C4B62",
750: "#293649",
850: "#1A2434",
900: "#131B2B",
};
/** Trigger.dev custom palette */
const midnight = {
...colors.slate,
450: slate[600],
500: slate[650],
550: slate[700],
600: slate[750],
650: slate[800],
750: slate[850],
800: slate[900],
850: "#0E1521",
900: "#0B1018",
};
/** Text colors */
const bright = colors.slate[200];
const dimmed = colors.slate[400];
const config: Config = {
content: [
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
midnight,
bright,
dimmed,
},
},
},
plugins: [],
};
export default config;