Skip to content

Commit 6b15a49

Browse files
committed
Replace all gray references with neutral in globals.css
Removes blue tint from all theme() calls in CSS
1 parent 2780b5a commit 6b15a49

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/styles/globals.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ code {
168168

169169
.plan-content h1,
170170
.plan-content h2 {
171-
color: color-mix(in srgb, var(--color-plan-mode) 60%, theme(colors.gray.200) 40%);
171+
color: color-mix(in srgb, var(--color-plan-mode) 60%, theme(colors.neutral.200) 40%);
172172
}
173173

174174
.plan-content h1 {
@@ -259,7 +259,7 @@ code {
259259
border-left: 3px solid var(--color-plan-mode);
260260
padding-left: 12px;
261261
margin: 8px 0;
262-
color: theme(colors.gray.600);
262+
color: theme(colors.neutral.600);
263263
font-style: italic;
264264
}
265265

@@ -272,7 +272,7 @@ code {
272272
margin-bottom: 3px;
273273
border-width: 5px;
274274
border-style: solid;
275-
border-color: theme(colors.gray.900) transparent transparent transparent;
275+
border-color: theme(colors.neutral.900) transparent transparent transparent;
276276
z-index: 1000;
277277
pointer-events: none;
278278
}
@@ -282,7 +282,7 @@ code {
282282
font-family: var(--font-primary);
283283
font-size: 14px;
284284
line-height: 1.6;
285-
color: theme(colors.gray.200);
285+
color: theme(colors.neutral.200);
286286
white-space: normal;
287287
}
288288

@@ -366,14 +366,14 @@ code {
366366
.markdown-content pre code {
367367
background: none;
368368
padding: 0;
369-
color: theme(colors.gray.200);
369+
color: theme(colors.neutral.200);
370370
}
371371

372372
.markdown-content blockquote {
373-
border-left: 3px solid theme(colors.gray.800);
373+
border-left: 3px solid theme(colors.neutral.800);
374374
padding-left: 12px;
375375
margin: 1em 0;
376-
color: theme(colors.gray.600);
376+
color: theme(colors.neutral.600);
377377
font-style: italic;
378378
}
379379

@@ -387,7 +387,7 @@ code {
387387

388388
.markdown-content hr {
389389
border: none;
390-
border-top: 1px solid theme(colors.gray.800);
390+
border-top: 1px solid theme(colors.neutral.800);
391391
margin: 1.4em 0;
392392
}
393393

@@ -408,7 +408,7 @@ code {
408408

409409
.markdown-content table th,
410410
.markdown-content table td {
411-
border: 1px solid theme(colors.gray.800);
411+
border: 1px solid theme(colors.neutral.800);
412412
padding: 6px 12px;
413413
text-align: left;
414414
}
@@ -532,7 +532,7 @@ pre code {
532532
height: 4px;
533533
-webkit-appearance: none;
534534
appearance: none;
535-
background: theme(colors.gray.800);
535+
background: theme(colors.neutral.800);
536536
outline: none;
537537
border-radius: 2px;
538538
transition: box-shadow 0.2s ease;

0 commit comments

Comments
 (0)