0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00

fix(overlay): adjust the color of punctuations (#11388)

* fix(overlay): adjust the color of punctuations

* chore: add changeset
This commit is contained in:
Ming-jun Lu 2024-07-01 17:15:35 +08:00 committed by Emanuele Stoppa
parent 5b811be97c
commit 12206b5b39
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Adjusts the color of punctuations in error overlay.

View file

@ -76,7 +76,7 @@ const style = /* css */ `
--astro-code-token-parameter: #aa0000;
--astro-code-token-function: #4ca48f;
--astro-code-token-string-expression: #9f722a;
--astro-code-token-punctuation: #ffffff;
--astro-code-token-punctuation: #000000;
--astro-code-token-link: #9f722a;
}