diff options
author | eugene yokota | 2023-01-21 19:18:16 +0000 |
---|---|---|
committer | GitHub | 2023-01-21 19:18:16 +0000 |
commit | 99fcb108609a90c922921d139291b7f99d5cb06a (patch) | |
tree | 6b2306e42ab8e845bf2cae173d1cd4705279c553 | |
parent | a20a96abdcfbea3b3eb890bfc266850938434a90 (diff) |
theme: monkai_aqua variant (#5578)
Current monokai (pro or otherwise) seems too red and green,
missingthe bright aqua / cyan color found in Sublime's Monokai.
This adds a variant of monokai, which I named monokai_aqua.
-rw-r--r-- | runtime/themes/monokai_aqua.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/runtime/themes/monokai_aqua.toml b/runtime/themes/monokai_aqua.toml new file mode 100644 index 00000000..0fe48254 --- /dev/null +++ b/runtime/themes/monokai_aqua.toml @@ -0,0 +1,17 @@ +inherits = "monokai" + +"keyword.control.import" = { fg = "cyan", modifiers = ["italic"] } +"keyword.function" = { fg = "cyan", modifiers = ["italic"] } +"keyword.storage.type" = { fg = "cyan", modifiers = ["italic"] } + +"namespace" = { fg = "text" } + +"type" = { fg = "type", modifiers = ["bold"] } + +"ui.statusline.normal" = { fg = "light-black", bg = "cyan" } +"ui.statusline.insert" = { fg = "light-black", bg = "green" } +"ui.statusline.select" = { fg = "light-black", bg = "purple" } + +[palette] +cyan = "#66D9EF" +type = "#66D9EF" |