From fddba38c957dad2e0a516c1e15888d2f79f35da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <git@minelli.me> Date: Wed, 13 Mar 2024 12:15:22 +0100 Subject: [PATCH] TextStyle => Transform code block with italic --- NodeApp/src/types/TextStyle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeApp/src/types/TextStyle.ts b/NodeApp/src/types/TextStyle.ts index d7fd003..e3f82ea 100644 --- a/NodeApp/src/types/TextStyle.ts +++ b/NodeApp/src/types/TextStyle.ts @@ -3,7 +3,7 @@ import chalk from 'chalk'; class TextStyle { public readonly BLOCK = chalk.cyan; - public readonly CODE = chalk.bgHex('F7F7F7').grey; + public readonly CODE = chalk.bgHex('F7F7F7').grey.italic; public readonly LIST_ITEM_NAME = chalk.magenta; public readonly URL = chalk.blue.underline; public readonly WARNING = chalk.red; -- GitLab