diff --git a/NodeApp/src/types/TextStyle.ts b/NodeApp/src/types/TextStyle.ts
index 266f1e3129c6936bb1f9ac05dbd977e555976413..ddf01d50d76437568c940848ef4f5ebbca55685d 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;
 }