Skip to content

Commit d1fed47

Browse files
committed
[CLI] Change color of option example string
1 parent 3b10a80 commit d1fed47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AssetStudioCLI/Options/CLIOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private static void OptionGrouping(string name, string desc, string example, Hel
136136
return;
137137
}
138138

139-
var optionDesc = desc + example.Color(ColorConsole.BrightBlack);
139+
var optionDesc = desc + example.Color(ColorConsole.BrightCyan);
140140
var optionDict = new Dictionary<string, string> { { name, optionDesc } };
141141
if (optionGroups.TryGetValue(helpGroup, out Dictionary<string, string> groupDict))
142142
{
@@ -1111,7 +1111,7 @@ private static string[] ValueSplitter(string value)
11111111
private static void ShowOptionDescription<T>(Option<T> option, bool isFlag = false)
11121112
{
11131113
var arg = isFlag ? "Flag" : "Option";
1114-
var optionDesc = option.Description + option.Example.Color(ColorConsole.BrightBlack);
1114+
var optionDesc = option.Description + option.Example.Color(ColorConsole.BrightCyan);
11151115
Console.WriteLine($"{arg} description:\n{optionDesc}");
11161116
}
11171117

0 commit comments

Comments
 (0)