diff options
| author | ruki <[email protected]> | 2019-01-03 22:37:30 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-01-03 09:45:01 +0800 |
| commit | 21539005098febb08e7331e14cae59639c9a21fc (patch) | |
| tree | 96b6eb1301a0cbae2fe532752bdc40b759994b41 /xmake/themes/dark/xmake.lua | |
| parent | 22a3a1c21f41205fa5ea71a4fd0a0d9caa2b8963 (diff) | |
improve theme name
Diffstat (limited to 'xmake/themes/dark/xmake.lua')
| -rw-r--r-- | xmake/themes/dark/xmake.lua | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/xmake/themes/dark/xmake.lua b/xmake/themes/dark/xmake.lua index b9b4b66b6..111ccc211 100644 --- a/xmake/themes/dark/xmake.lua +++ b/xmake/themes/dark/xmake.lua @@ -26,12 +26,14 @@ theme("dark") -- the error info - set_color("error", "bright red") - set_color("error.verbose", "dim red") + set_color("error", "red") + set_color("error.dim", "dim red") + set_color("error.bright", "bright red") -- the warning info - set_color("warning", "bright cyan") - set_color("warning.verbose", "dim cyan") + set_color("warning", "cyan") + set_color("warning.dim", "dim cyan") + set_color("warning.bright", "bright cyan") -- the building progress set_text("build.progress_format", "[%3d%%]") @@ -39,9 +41,9 @@ theme("dark") -- the building object file set_color("build.object", "") - set_color("build.object.verbose", "dim green") + set_color("build.object.dim", "dim green") -- the building target file set_color("build.target", "magenta") - set_color("build.target.verbose", "dim magenta") + set_color("build.target.dim", "dim magenta") |
