From 17dd8060de6a61fe78aa88e6a6297de226332f00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me> Date: Thu, 18 Jan 2024 13:47:14 +0100 Subject: [PATCH] Style => Style improvement --- ExerciseChecker/src/types/Style.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ExerciseChecker/src/types/Style.ts b/ExerciseChecker/src/types/Style.ts index 3b9d9f9..19fca5a 100644 --- a/ExerciseChecker/src/types/Style.ts +++ b/ExerciseChecker/src/types/Style.ts @@ -2,8 +2,8 @@ import chalk from 'chalk'; class Style { - public readonly APP_NAME = chalk.bgBlue.black.bold; - public readonly INFO = chalk.blue; + public readonly APP_NAME = chalk.bgBlue.black.bold.underline; + public readonly INFO = chalk.blue.bold.italic; public readonly ERROR = chalk.red; public readonly SUCCESS = chalk.green; public readonly FAILURE = chalk.red; -- GitLab