-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
71 lines (64 loc) · 1.55 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./app/**/*.{ts,tsx,jsx,js}"],
future: {
hoverOnlyWhenSupported: true,
},
theme: {
screens: {
tablet: "750px",
laptop: "1000px",
desktop: "1750px",
ultrawide: "2750px",
},
extend: {
animation: {
"spin-slow": "spin 3s linear infinite",
},
colors: Object.fromEntries(
[
"far-bg",
"near-bg",
"nearest-bg",
"header-text",
"body-text",
"placeholder-text",
"link-underline",
"focused-element",
"divider-line",
"neutral-soft-border",
"neutral-hard-border",
"text-box-border",
"button-down",
"icon-button-hover",
"icon-button-down",
"cluster-bg",
"cluster-border",
"environment-bg",
"environment-border",
"chart-bg",
"chart-border",
"app-version-bg",
"app-version-border",
"chart-version-bg",
"chart-version-border",
"misc-heavy-bg",
"misc-heavy-border",
"misc-light-bg",
"misc-light-border",
"error-bg",
"error-border",
"error-button",
"beehive-logo",
"status-red",
"status-green",
"status-yellow",
"status-gray",
].map((name) => [
`color-${name}`,
`rgb(var(--color-${name}, 255 0 0) / <alpha-value>)`,
]),
),
},
},
};