From a56061331a40dab515d468e8742912b9fdc85982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <git@minelli.swiss> Date: Tue, 25 Mar 2025 14:34:26 +0100 Subject: [PATCH] TextStyle => Add some styles --- NodeApp/src/types/TextStyle.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NodeApp/src/types/TextStyle.ts b/NodeApp/src/types/TextStyle.ts index 266f1e3..ddf01d5 100644 --- a/NodeApp/src/types/TextStyle.ts +++ b/NodeApp/src/types/TextStyle.ts @@ -5,7 +5,9 @@ class TextStyle { public readonly BLOCK = chalk.cyan; public readonly CODE = chalk.bgHex('F7F7F7').grey.italic; public readonly LIST_ITEM_NAME = chalk.magenta; + public readonly LIST_SUBITEM_NAME = chalk.green; public readonly QUESTION = chalk.greenBright; + public readonly TIPS = chalk.blueBright; public readonly URL = chalk.blue.underline; public readonly WARNING = chalk.red; } -- GitLab