1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-19 04:16:00 -05:00

fix(ext/console): change Temporal color (#27684)

This commit changes output color of `Temporal` instances from
"magenta" to "cyan" to discriminate them from `Date` instances.

Closes https://github.com/denoland/deno/issues/27585
This commit is contained in:
Bartek Iwańczuk 2025-01-16 18:27:54 +00:00 committed by GitHub
parent 17d6e66ee3
commit 2debe9c8dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -216,7 +216,7 @@ const styles = {
regexp: "red",
module: "underline",
internalError: "red",
temporal: "magenta",
temporal: "cyan",
};
const defaultFG = 39;