0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -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 GitHub
parent e60aab9a9f
commit 3a223b4811
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}