diff options
author | Jesús González | 2023-02-07 03:39:49 +0000 |
---|---|---|
committer | GitHub | 2023-02-07 03:39:49 +0000 |
commit | f71f27f804016aa7a8e3517cebeef0861088fb0f (patch) | |
tree | 804773cc581609e694dbc947b6cc847532c1c630 | |
parent | fb149133db1269f14bc37ef8583fc762e7f19781 (diff) |
Add Darcula Solid theme (#5778)
* Add Darcula Solid theme.
* Update darcula solid theme.
* Derive darcula-solid theme from original darcula
-rw-r--r-- | runtime/themes/darcula-solid.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/runtime/themes/darcula-solid.toml b/runtime/themes/darcula-solid.toml new file mode 100644 index 00000000..5feac234 --- /dev/null +++ b/runtime/themes/darcula-solid.toml @@ -0,0 +1,19 @@ +# Original source and more info: https://github.com/jesusmgg/darcula-solid-helix + +inherits = "darcula" + +"ui.background.separator" = { bg = "grey01" } +"ui.menu.scroll" = { fg = "grey02", bg = "grey00" } +"ui.popup" = { fg = "grey03", bg = "grey02" } +"ui.window" = { bg = "grey00" } +"ui.selection" = { bg = "blue" } +"ui.cursorline.secondary" = { bg = "grey03" } + +[palette] +grey00 = "#101010" +grey01 = "#1f1f1f" +grey02 = "#323232" +grey03 = "#555555" +grey04 = "#a8a8a8" + +blue = "#104158" |