Skip to content

Commit b507ff0

Browse files
committed
theme: update dark theme to be more black
1 parent 70933d9 commit b507ff0

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

styles/tailwind.css

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
}
2121

2222
.theme-dark {
23-
--fc-primary: #E6EDF7;
24-
--bg-primary: rgba(15, 31, 58, 0.71);
25-
--bg-secondary: #1A3155;
26-
--bg-hover: #22385F;
27-
--accent-color: #4A90E2;
23+
--fc-primary: #f5f5f5;
24+
--bg-primary: #050607;
25+
--bg-secondary: #0b0d10;
26+
--bg-hover: #15181e;
27+
--accent-color: #5aa9ff;
2828
}
2929

3030
/* Modern modern-inspired styles */
@@ -145,23 +145,23 @@ body {
145145

146146
/* Theme-specific styles */
147147
.theme-dark .bg-white {
148-
@apply bg-[#1A3155];
148+
@apply bg-[#0b0d10];
149149
}
150150

151151
.theme-dark .bg-gray-50 {
152-
@apply bg-[#0F1F3A];
152+
@apply bg-[#050607];
153153
}
154154

155155
.theme-dark .text-gray-900 {
156-
@apply text-[#E6EDF7];
156+
@apply text-[#f5f5f5];
157157
}
158158

159159
.theme-dark .text-gray-600 {
160-
@apply text-[#A3B5D3];
160+
@apply text-[#a8adba];
161161
}
162162

163163
.theme-dark .text-gray-500 {
164-
@apply text-[#7F95B5];
164+
@apply text-[#8a8f9c];
165165
}
166166

167167
.theme-dark .shadow-sm {
@@ -181,25 +181,25 @@ body {
181181
}
182182

183183
.theme-dark .border-gray-200 {
184-
@apply border-gray-700;
184+
@apply border-[#1f232a];
185185
}
186186

187187
.theme-dark .bg-gray-100 {
188-
@apply bg-gray-800;
188+
@apply bg-[#101319];
189189
}
190190

191191
.theme-dark .hover\:bg-gray-50:hover {
192-
@apply hover:bg-slate-800;
192+
@apply hover:bg-[#15181e];
193193
}
194194

195195
.theme-dark .hover\:bg-gray-100:hover {
196-
@apply hover:bg-slate-700;
196+
@apply hover:bg-[#1c2028];
197197
}
198198

199199
.theme-dark .hover\:text-gray-900:hover {
200-
@apply hover:text-slate-100;
200+
@apply hover:text-[#f5f5f5];
201201
}
202202

203203
.theme-dark .hover\:text-gray-700:hover {
204204
@apply hover:text-slate-200;
205-
}
205+
}

0 commit comments

Comments
 (0)