From 9daf5c6f8b40ec8a80727c4e6e3db09986eeb0c8 Mon Sep 17 00:00:00 2001
From: Chromo-residuum-opec <x@matte.fyi>
Date: Fri, 9 Aug 2024 08:35:41 -0700
Subject: [PATCH] feat: add iceberg light/dark themes (#10674)

* feat: add iceberg light/dark themes

* set ui.virtual and ui.virtual.ruler

* quote ui.menu.selected key
---
 runtime/themes/iceberg-dark.toml  | 128 ++++++++++++++++++++++++++++++
 runtime/themes/iceberg-light.toml |  39 +++++++++
 2 files changed, 167 insertions(+)
 create mode 100644 runtime/themes/iceberg-dark.toml
 create mode 100644 runtime/themes/iceberg-light.toml

diff --git a/runtime/themes/iceberg-dark.toml b/runtime/themes/iceberg-dark.toml
new file mode 100644
index 00000000..b6e0cf52
--- /dev/null
+++ b/runtime/themes/iceberg-dark.toml
@@ -0,0 +1,128 @@
+# Author : Chromo-residuum-opec <development.0extl@simplelogin.com>
+
+"attribute" = { fg = "green" }
+"boolean" = { fg = "purple" }
+"character" = { fg = "purple" }
+"comment" = { fg = "comment_fg" }
+"conditional" = { fg = "blue" }
+"constant" = { fg = "purple" }
+"constructor" = { fg = "blue" }
+"diagnostic.deprecated" = { modifiers = ["crossed_out"] }
+"diagnostic.error" = { underline = { style = "curl", color = "red" } }
+"diagnostic.hint" = { underline = { style = "curl", color = "comment_fg" } }
+"diagnostic.info" = { underline = { style = "curl", color = "cyan" } }
+"diagnostic.unnecessary" = { modifiers = ["dim"] }
+"diagnostic.warning" = { underline = { style = "curl", color = "orange" } }
+"diff.delta" = { fg = "blue" }
+"diff.delta.gutter" = { fg = "cyan", bg = "linenr_bg" }
+"diff.minus" = { fg = "red" }
+"diff.minus.gutter" = { fg = "red", bg = "linenr_bg" }
+"diff.plus" = { fg = "green" }
+"diff.plus.gutter" = { fg = "green", bg = "linenr_bg" }
+"error" = { fg = "red" }
+"exception" = { fg = "blue" }
+"field" = { fg = "background_fg" }
+"float" = { fg = "purple" }
+"function" = { fg = "pale" }
+"function.macro" = { fg = "green" }
+"hint" = { fg = "comment_fg" }
+"identifier" = { fg = "blue" }
+"info" = { fg = "cyan" }
+"keyword" = { fg = "blue" }
+"keyword.directive" = { fg = "green" }
+"keyword.import" = { fg = "pale" }
+"label" = { fg = "green" }
+"markup.bold" = { modifiers = ["bold"] }
+"markup.heading" = { fg = "blue", modifiers = ["bold"] }
+"markup.italic" = { modifiers = ["italic"] }
+"markup.link" = { fg = "blue", underline = { style = "line" } }
+"markup.link.label" = { fg = "cyan" }
+"markup.link.text" = { fg = "cyan" }
+"markup.link.url" = { underline = { style = "line" } }
+"markup.list" = { fg = "orange", modifiers = ["bold"] }
+"markup.raw" = { fg = "cyan" }
+"markup.raw.inline" = { bg = "black", fg = "blue" }
+"markup.strikethrough" = { modifiers = ["crossed_out"] }
+"method" = { fg = "pale" }
+"namespace" = { fg = "blue" }
+"number" = { fg = "purple" }
+"operator" = { fg = "blue" }
+"parameter" = { fg = "background_fg" }
+"property" = { fg = "background_fg" }
+"punctuation.bracket" = { fg = "background_fg" }
+"punctuation.delimiter" = { fg = "background_fg" }
+"punctuation.special" = { fg = "green" }
+"repeat" = { fg = "blue" }
+"special" = { fg = "green" }
+"string" = { fg = "cyan" }
+"string.escape" = { fg = "green" }
+"string.special" = { fg = "green" }
+"tag" = { fg = "blue" }
+"tag.attribute" = { fg = "purple" }
+"text" = { fg = "background_fg" }
+"type" = { fg = "blue" }
+"ui.background" = { fg = "background_fg", bg = "background_bg" }
+"ui.background.separator" = { fg = "comment_fg" }
+"ui.bufferline.active" = { fg = "pale" }
+"ui.cursor.match" = { fg = "background_fg", bg = "matchparen_bg" }
+"ui.cursor.normal" = { bg = "gray" }
+"ui.cursor.primary" = { modifiers = ["reversed"] }
+"ui.cursor.select" = { bg = "gray" }
+"ui.gutter" = { fg = "linenr_fg", bg = "linenr_bg" }
+"ui.help" = { fg = "background_fg", bg = "cursorlinenr_bg" }
+"ui.linenr" = { fg = "linenr_fg", bg = "linenr_bg" }
+"ui.menu" = { fg = "background_fg", bg = "cursorlinenr_bg" }
+"ui.menu.border" = { fg = "comment_fg" }
+"ui.menu.selected" = { fg = "menusel_fg", bg = "menusel_bg" }
+"ui.popup" = { fg = "background_fg", bg = "cursorlinenr_bg" }
+"ui.popup.info" = { fg = "blue" }
+"ui.selection" = { bg = "sel_bg" }
+"ui.statusline" = { bg = "statusline_bg", fg = "statusline_fg" }
+"ui.statusline.insert" = { fg = "black", bg = "blue" }
+"ui.statusline.select" = { fg = "black", bg = "green" }
+"ui.text.focus" = { fg = "orange" }
+"ui.virtual" = { fg = "linenr_fg" }
+"ui.virtual.indent-guide" = { fg = "linenr_fg" }
+"ui.virtual.jump-label" = {  fg = "orange", modifiers = ["bold"] }
+"ui.virtual.ruler" = { bg = "linenr_bg" }
+"ui.virtual.whitespace" = { fg = "sel_bg" }
+"ui.window" = { fg = "comment_fg", modifiers = ["bold"] }
+"variable" = { fg = "background_fg" }
+"variable.builtin" = { fg = "blue" }
+"warning" = { fg = "orange" }
+
+[palette]
+
+orange = "#e2a578"
+pale = "#a4aecc"
+purple = "#a093c8"
+
+black = "#1e2132"
+gray = "#6b7089"
+red = "#e27878"
+light-red = "#e98989"
+green = "#b5bf82"
+light-green = "#c0ca8e"
+yellow = "#e2a478"
+light-yellow = "#e9b189"
+blue = "#85a0c7"
+light-blue = "#91acd1"
+magenta = "#a093c7"
+light-magenta = "#ada0d3"
+cyan = "#89b9c2"
+light-cyan = "#95c4ce"
+white = "#c6c8d1"
+light-gray = "#d2d4de"
+
+background_bg = "#161822"
+background_fg = "#c7c9d1"
+comment_fg = "#6c7189"
+cursorlinenr_bg = "#3d425c"
+linenr_bg = "#1f2233"
+linenr_fg = "#454d73"
+matchparen_bg = "#3f455f"
+menusel_bg = "#5c638a"
+menusel_fg = "#f0f1f5"
+sel_bg = "#282d43"
+statusline_bg = "#0f1117"
+statusline_fg = "#828597"
diff --git a/runtime/themes/iceberg-light.toml b/runtime/themes/iceberg-light.toml
new file mode 100644
index 00000000..2c7ca527
--- /dev/null
+++ b/runtime/themes/iceberg-light.toml
@@ -0,0 +1,39 @@
+# Author : Chromo-residuum-opec <development.0extl@simplelogin.com>
+
+inherits = "iceberg-dark"
+"ui.menu.selected" = { fg = "background_fg", bg = "menusel_bg" }
+
+[palette]
+
+orange = "#c67439"
+pale = "#505695"
+purple = "#785ab5"
+
+black = "#dcdfe7"
+gray = "#8389a3"
+red = "#cd517a"
+light-red = "#cc3768"
+green = "#668f3d"
+light-green = "#598030"
+yellow = "#c57339"
+light-yellow = "#b6662d"
+blue = "#2e539e"
+light-blue = "#22478e"
+magenta = "#7759b4"
+light-magenta = "#6845ad"
+cyan = "#3f84a6"
+light-cyan = "#327698"
+white = "#33374c"
+light-gray = "#262a3f"
+
+background_bg = "#e9e9ed"
+background_fg = "#33374d"
+comment_fg = "#8489a4"
+cursorlinenr_bg = "#cccfe0"
+linenr_bg = "#dddfe9"
+linenr_fg = "#a0a5c0"
+matchparen_bg = "#bec0ca"
+menusel_bg = "#a9afd1"
+sel_bg = "#cacdd8"
+statusline_bg = "#cad0de"
+statusline_fg = "#757da3"