diff options
-rw-r--r-- | .changeset/fair-wolves-move.md | 5 | ||||
-rw-r--r-- | packages/astro/src/core/errors/overlay.ts | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/fair-wolves-move.md b/.changeset/fair-wolves-move.md new file mode 100644 index 000000000..8e64bbf96 --- /dev/null +++ b/.changeset/fair-wolves-move.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Adjusts the color of punctuations in error overlay. diff --git a/packages/astro/src/core/errors/overlay.ts b/packages/astro/src/core/errors/overlay.ts index 02303409d..4a7818d66 100644 --- a/packages/astro/src/core/errors/overlay.ts +++ b/packages/astro/src/core/errors/overlay.ts @@ -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; } |