-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
176 lines (168 loc) · 3.96 KB
/
tailwind.config.cjs
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
colors: {
// This should exclusively be used for star icons
stars: {
5: "#FDBA3E",
4: "#C03EFD",
3: "#3E7FFD",
},
// Elements
// Use 300-500 for main element colors
// Use 800-950 for background element accents
// Haven't tested every single color - ping neia if anything looks off
// Generated with https://www.tints.dev/
imaginary: {
// Root 900, sat +8
50: "#FFF7E5",
100: "#FFEECC",
200: "#FFDD99",
300: "#FCCB69",
400: "#E8B34A",
500: "#CE9A31",
600: "#977635",
700: "#675532",
800: "#3F3727",
900: "#1C1B19",
950: "#100E0A"
},
quantum: {
// Root 900, sat +4
// This is the one I'm least happy with.
50: "#EBE5FF",
100: "#D7CDFE",
200: "#B1A1F7",
300: "#8D7AEB",
400: "#6A56DC",
500: "#4A36C9",
600: "#3F3399",
700: "#322B6E",
800: "#231F47",
900: "#131221",
950: "#090812"
},
wind: {
// Root 900, sat +4
50: "#E6FFEA",
100: "#CFFCD5",
200: "#A5F3AE",
300: "#7BE586",
400: "#5AD364",
500: "#3EBB47",
600: "#398E3D",
700: "#2E612F",
800: "#203C20",
900: "#101910",
950: "#070D07"
},
lightning: {
// Root 900, hue -2, sat +4
50: "#F2E6FE",
100: "#E7D0FB",
200: "#D1A7F1",
300: "#BC82E3",
400: "#A862D0",
500: "#9549BB",
600: "#794091",
700: "#5B3668",
800: "#3D2744",
900: "#1F1721",
950: "#110B13"
},
ice: {
// Root 900, hue -4, sat -4
50: "#E5FEFF",
100: "#CCF9FF",
200: "#99ECFF",
300: "#6ED5F7",
400: "#46B7EC",
500: "#2295DD",
600: "#236DA9",
700: "#1F4B7A",
800: "#172E4F",
900: "#0E1625",
950: "#060C14"
},
fire: {
// Root 900, sat +8
50: "#FFE5E5",
100: "#FFCCCC",
200: "#FF9999",
300: "#FE6767",
400: "#EB4747",
500: "#D12E2E",
600: "#993333",
700: "#693030",
800: "#3D2424",
900: "#1A1616",
950: "#100909"
},
physical: {
// Root 500
50: "#F8F7F7",
100: "#EEEDED",
200: "#DFDDDD",
300: "#CECCCC",
400: "#B2AEAE",
500: "#948F8F",
600: "#787373",
700: "#585555",
800: "#3C3939",
900: "#1D1B1B",
950: "#100F0F"
},
// Site related
// Try to replace random stray colors with this
// links can use theme-200
theme: {
50: "#F8F0FE",
100: "#F0E0FF",
200: "#D5ACFB",
300: "#BC7FF5",
400: "#A356EB",
500: "#882CDD",
600: "#6D27B0",
700: "#50247B",
800: "#361D4E",
900: "#1A1122",
950: "#0D0A10"
},
// Note that this is a tinted grey.
// If you want a neutral grey, use neutral-X instead.
gray: {
50: "#F1F0F5",
100: "#E4E1EA",
200: "#C8C2D6",
300: "#ADA4C1",
400: "#9185AD",
500: "#766798",
600: "#5E527A",
700: "#473E5B",
800: "#2F293D",
900: "#18151F",
950: "#0C0A0F"
},
// primary background color; all content lays on top of this
bg: {
DEFAULT: "#141214",
dark: "#18151F",
},
neutral: colors.neutral
},
extend: {
aria: {
collapsed: 'expanded="false"'
},
backgroundImage: {
main: "url(/img/planet_bg.png)"
}
}
},
fontFamily: {},
plugins: [
require("tailwindcss-radix")(),
],
}