From 2debe9c8dd06ec287034852dc41293cf851e8be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 16 Jan 2025 18:27:54 +0000 Subject: [PATCH] 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 --- ext/console/01_console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/console/01_console.js b/ext/console/01_console.js index a85faaccf1..09441a56a3 100644 --- a/ext/console/01_console.js +++ b/ext/console/01_console.js @@ -216,7 +216,7 @@ const styles = { regexp: "red", module: "underline", internalError: "red", - temporal: "magenta", + temporal: "cyan", }; const defaultFG = 39;