From d5ce7618396850bd6caee11fd9cb397616299146 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 13 Apr 2024 13:39:33 +0200 Subject: [PATCH 01/17] Add new color theme 'iroaseta' --- runtime/themes/iroaseta.toml | 122 +++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 runtime/themes/iroaseta.toml diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml new file mode 100644 index 000000000000..cb5f4f1c320a --- /dev/null +++ b/runtime/themes/iroaseta.toml @@ -0,0 +1,122 @@ +# Author: YardQuit + +# Syntax highlighting +"attribute" = { fg = "yellow" } +"comment" = { fg = "gray" } +"constant" = { fg = "blue" } +"constructor" = { fg = "orange" } +"condtant.builtin.boolean" = { fg = "blue" } +"constant.character.escape" = { fg = "yellow" } +"constant.character.numeric.integer" = { fg = "blue" } +"constant.character.numeric.float" = { fg = "blue" } +"function" = { fg = "purple" } +"function.builtin" = { fg = "purple" } +"function.method" = { fg = "green" } +"function.macro" = { fg = "green" } +"keyword" = { fg = "red" } +"keyword.control.conditional" = { fg = "red" } +"keyword.control.repeat" = { fg = "red" } +"keyword.control.import" = { fg = "red" } +"keyword.operator" = { fg = "blue" } +"keyword.function" = { fg = "red" } +"keyword.exception" = { fg = "red" } +"keyword.return" = { fg = "red" } +"operator" = { fg = "white" } +"punctuation" = { fg = "white" } +"punctuation.delimiter" = { fg = "white" } +"punctuation.bracket" = { fg = "orange" } +"punctuation.special" = { fg = "yellow" } +"string" = { fg = "blue" } +"string.special" = { fg = "blue" } +"string.regexp" = { fg = "yellow" } +"storage" = { fg = "red" } +"storage.type" = { fg = "red" } +"storage.modifier" = { fg = "yellow" } +"tag" = { fg = "green" } +"label" = { fg = "blue" } +"type" = { fg = "white" } +"type.builtin" = { fg = "blue" } +"namespace" = { fg = "white" } +"variable" = { fg = "orange" } +"variable.builtin" = { fg = "orange" } +"variable.parameter" = { fg = "yellow" } +"variable.other.member" = { fg = "green" } +"diff.plus" = { fg = "green" } +"diff.delta" = { fg = "brown" } +"diff.minus" = { fg = "red" } + +# Markup +"markup.heading" = { fg = "normal", modifiers = ["bold"] } +"markup.list" = { fg = "normal" } +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "blue" } +"markup.link.text" = { fg = "gray" } +"markup.quote" = { fg = "green", modifiers = ["italic"] } +"markup.raw" = { fg = "blue" } + +# Interface +"ui.background" = { fg = "normal", bg = "default" } +"ui.help" = { fg = "normal", bg = "dark" } +"ui.linenr" = { fg = "gray" } +"ui.linenr.selected" = { fg = "orange" } +"ui.menu" = { fg = "gray", bg = "dark" } +"ui.menu.selected" = { fg = "dark", bg = "blue" } +"ui.popup" = { fg = "gray", bg = "dark" } +"ui.selection" = { bg = "smark" } +"ui.selection.primary" = { bg = "pmark" } +"ui.statusline" = { fg = "normal", bg = "dark" } +"ui.statusline.normal" = { fg = "green", bg = "list", modifiers = ["reversed"] } +"ui.statusline.insert" = { fg = "orange", bg = "list", modifiers = ["reversed"] } +"ui.statusline.select" = { fg = "blue", bg = "list", modifiers = ["reversed"] } +"ui.statusline.inactive" = { fg = "gray", bg = "list" } +"ui.text" = { fg = "normal" } +"ui.text.focus" = { fg = "green" } +"ui.window" = { fg = "dark" } +"ui.cursor" = { modifiers = ["reversed"] } +"ui.cursor.match" = { fg = "orange", modifiers = ["bold"] } +"ui.cursor.primary" = { modifiers = ["reversed"] } +# "ui.cursor.primary.normal" = { fg = "white" } +# "ui.cursor.primary.insert" = { fg = "green" } +# "ui.cursor.primary.select" = { fg = "blue" } +"ui.cursorline.primary" = { bg = "list" } +"ui.cursorline.secondary" = { bg = "dark" } +"ui.cursorcolumn.primary" = { bg = "list" } +"ui.cursorcolumn.secondary" = { bg = "dark" } +"ui.virtual.ruler" = { bg = "rustic_red" } +"ui.virtual.whitespace" = { fg = "brown" } +"ui.virtual.indent-guide" = { fg = "brown" } +"ui.virtual.inlay-hint" = { fg = "gray"} +"ui.virtual.wrap" = { fg = "yellow"} +"ui.gutter" = { bg = "default" } +"ui.gutter.selected" = { bg = "dark" } + +# Diagnostics +"error" = { fg = "red" } +"warning" = { fg = "brown" } +"info" = { fg = "blue" } +"hint" = { fg = "white" } +# "diagnostic" = { modifiers = ["underlined"] } +# "diagnostic" = { fg = "", bg = "#080808", modifiers = ["default"] } +"diagnostic" = { fg = "", bg = "#3d0c02", modifiers = ["default"] } +"special" = { fg = "blue" } + +[palette] +default = "#0d1117" +normal = "#c9d1d9" +dark = "#010409" +pmark = "#5b3256" +smark = "#32174d" +list = "#161b22" + +white = "#f2f0eb" +gray = "#91a3b0" +brown = "#987654" +yellow = "#faa356" +orange = "#ff9000" +red = "#fa7970" +blue = "#45b1e8" +green = "#81be83" +purple = "#dda0dd" +unknown = "#5500ff" +rustic_red = "#540b0c" From ea7cfedf72b331717f7754681b6ff1fec02a03e9 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sun, 14 Apr 2024 22:14:26 +0200 Subject: [PATCH 02/17] Update runtime/themes/iroaseta.toml Co-authored-by: postsolar <120750161+postsolar@users.noreply.github.com> --- runtime/themes/iroaseta.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index cb5f4f1c320a..8df6eb14d904 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -5,7 +5,7 @@ "comment" = { fg = "gray" } "constant" = { fg = "blue" } "constructor" = { fg = "orange" } -"condtant.builtin.boolean" = { fg = "blue" } +"constant.builtin.boolean" = { fg = "blue" } "constant.character.escape" = { fg = "yellow" } "constant.character.numeric.integer" = { fg = "blue" } "constant.character.numeric.float" = { fg = "blue" } From 5ba97d0bd3c0785f3c221a9e7cf381c48b51823b Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sun, 14 Apr 2024 22:23:22 +0200 Subject: [PATCH 03/17] Update iroaseta.toml Add virtual jump label theme setting --- runtime/themes/iroaseta.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 8df6eb14d904..84b6bc0fe098 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -90,6 +90,7 @@ "ui.virtual.wrap" = { fg = "yellow"} "ui.gutter" = { bg = "default" } "ui.gutter.selected" = { bg = "dark" } +"ui.virtual.jump-label" = { modifiers = ["reversed"] } # Diagnostics "error" = { fg = "red" } From 598909007ff3e94b649fc20b7b22d79ce5d33e6e Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Mon, 15 Apr 2024 20:59:13 +0200 Subject: [PATCH 04/17] Update runtime/themes/iroaseta.toml Co-authored-by: Michael Davis --- runtime/themes/iroaseta.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 84b6bc0fe098..02e9fe894627 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -7,8 +7,8 @@ "constructor" = { fg = "orange" } "constant.builtin.boolean" = { fg = "blue" } "constant.character.escape" = { fg = "yellow" } -"constant.character.numeric.integer" = { fg = "blue" } -"constant.character.numeric.float" = { fg = "blue" } +"constant.numeric.integer" = { fg = "blue" } +"constant.numeric.float" = { fg = "blue" } "function" = { fg = "purple" } "function.builtin" = { fg = "purple" } "function.method" = { fg = "green" } From 4b354a1f1ee95fc694f9d8e854a4610d744f506d Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Mon, 15 Apr 2024 21:08:01 +0200 Subject: [PATCH 05/17] Update iroaseta.toml update storage. keyword.storage. according to suggestion, and update color. --- runtime/themes/iroaseta.toml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 02e9fe894627..07825f468492 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -21,6 +21,9 @@ "keyword.function" = { fg = "red" } "keyword.exception" = { fg = "red" } "keyword.return" = { fg = "red" } +"keyword.storage" = { fg = "red" } +"keyword.storage.type" = { fg = "red" } +"keyword.storage.modifier" = { fg = "green" } "operator" = { fg = "white" } "punctuation" = { fg = "white" } "punctuation.delimiter" = { fg = "white" } @@ -29,9 +32,6 @@ "string" = { fg = "blue" } "string.special" = { fg = "blue" } "string.regexp" = { fg = "yellow" } -"storage" = { fg = "red" } -"storage.type" = { fg = "red" } -"storage.modifier" = { fg = "yellow" } "tag" = { fg = "green" } "label" = { fg = "blue" } "type" = { fg = "white" } @@ -76,9 +76,6 @@ "ui.cursor" = { modifiers = ["reversed"] } "ui.cursor.match" = { fg = "orange", modifiers = ["bold"] } "ui.cursor.primary" = { modifiers = ["reversed"] } -# "ui.cursor.primary.normal" = { fg = "white" } -# "ui.cursor.primary.insert" = { fg = "green" } -# "ui.cursor.primary.select" = { fg = "blue" } "ui.cursorline.primary" = { bg = "list" } "ui.cursorline.secondary" = { bg = "dark" } "ui.cursorcolumn.primary" = { bg = "list" } @@ -97,8 +94,6 @@ "warning" = { fg = "brown" } "info" = { fg = "blue" } "hint" = { fg = "white" } -# "diagnostic" = { modifiers = ["underlined"] } -# "diagnostic" = { fg = "", bg = "#080808", modifiers = ["default"] } "diagnostic" = { fg = "", bg = "#3d0c02", modifiers = ["default"] } "special" = { fg = "blue" } @@ -109,7 +104,6 @@ dark = "#010409" pmark = "#5b3256" smark = "#32174d" list = "#161b22" - white = "#f2f0eb" gray = "#91a3b0" brown = "#987654" From 8e7689c4ec34c7df261de51ead0425354568b6f6 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Tue, 16 Apr 2024 07:42:09 +0200 Subject: [PATCH 06/17] Update iroaseta.toml remove unused palette --- runtime/themes/iroaseta.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 07825f468492..8d03a647cb65 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -113,5 +113,4 @@ red = "#fa7970" blue = "#45b1e8" green = "#81be83" purple = "#dda0dd" -unknown = "#5500ff" rustic_red = "#540b0c" From 9c5d30fb82df131fb520e07319f5bb0428d416e1 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Tue, 16 Apr 2024 10:37:56 +0200 Subject: [PATCH 07/17] Update iroaseta.toml add missing setting for bufferline --- runtime/themes/iroaseta.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 8d03a647cb65..2a03b1d9663c 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -88,6 +88,7 @@ "ui.gutter" = { bg = "default" } "ui.gutter.selected" = { bg = "dark" } "ui.virtual.jump-label" = { modifiers = ["reversed"] } +"ui.bufferline.active" = { fg = "yellow", bg = "rustic_red", modifiers = ["bold"] } # Diagnostics "error" = { fg = "red" } From 2b56e2d9058da3959ae9cdf16e49ee9f8cb3fb78 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Tue, 16 Apr 2024 15:14:43 +0200 Subject: [PATCH 08/17] Update iroaseta.toml update diagnostic fg color --- runtime/themes/iroaseta.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 2a03b1d9663c..2073e8a91beb 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -95,7 +95,7 @@ "warning" = { fg = "brown" } "info" = { fg = "blue" } "hint" = { fg = "white" } -"diagnostic" = { fg = "", bg = "#3d0c02", modifiers = ["default"] } +"diagnostic" = { fg = "yellow", bg = "#3d0c02", modifiers = ["default"] } "special" = { fg = "blue" } [palette] From b9bcc8143799442ecf4524c801a2418002020857 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 27 Apr 2024 12:41:26 +0200 Subject: [PATCH 09/17] Update iroaseta.toml I made the config more comprehensive and took all available themes settings from the manual. Some are commented out though. --- runtime/themes/iroaseta.toml | 313 +++++++++++++++++++++++------------ 1 file changed, 204 insertions(+), 109 deletions(-) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 2073e8a91beb..54ac1c5e519a 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -1,117 +1,212 @@ +# Theme: Iroaseta # Author: YardQuit -# Syntax highlighting -"attribute" = { fg = "yellow" } -"comment" = { fg = "gray" } -"constant" = { fg = "blue" } -"constructor" = { fg = "orange" } -"constant.builtin.boolean" = { fg = "blue" } -"constant.character.escape" = { fg = "yellow" } -"constant.numeric.integer" = { fg = "blue" } -"constant.numeric.float" = { fg = "blue" } -"function" = { fg = "purple" } -"function.builtin" = { fg = "purple" } -"function.method" = { fg = "green" } -"function.macro" = { fg = "green" } -"keyword" = { fg = "red" } -"keyword.control.conditional" = { fg = "red" } -"keyword.control.repeat" = { fg = "red" } -"keyword.control.import" = { fg = "red" } -"keyword.operator" = { fg = "blue" } -"keyword.function" = { fg = "red" } -"keyword.exception" = { fg = "red" } -"keyword.return" = { fg = "red" } -"keyword.storage" = { fg = "red" } -"keyword.storage.type" = { fg = "red" } -"keyword.storage.modifier" = { fg = "green" } -"operator" = { fg = "white" } -"punctuation" = { fg = "white" } -"punctuation.delimiter" = { fg = "white" } -"punctuation.bracket" = { fg = "orange" } -"punctuation.special" = { fg = "yellow" } -"string" = { fg = "blue" } -"string.special" = { fg = "blue" } -"string.regexp" = { fg = "yellow" } -"tag" = { fg = "green" } -"label" = { fg = "blue" } -"type" = { fg = "white" } -"type.builtin" = { fg = "blue" } -"namespace" = { fg = "white" } -"variable" = { fg = "orange" } -"variable.builtin" = { fg = "orange" } -"variable.parameter" = { fg = "yellow" } -"variable.other.member" = { fg = "green" } -"diff.plus" = { fg = "green" } -"diff.delta" = { fg = "brown" } -"diff.minus" = { fg = "red" } +# SYNTAX HIGHLIGHTING +"attribute" = { fg = "yellow" } # +"type" = { fg = "white" } # types e.g. return type: Result, String, etc +"type.builtin" = { fg = "white" } # primitive types provided by the language (int, usize) +"type.parameter" = { fg = "white" } # generic type parameter (T) +"type.enum" = { fg = "white" } # +"type.enum.variant" = { fg = "white" } # +"constructor" = { fg = "orange" } # e.g. Ok, Err, etc +"constant" = { fg = "blue" } # const name +"constant.builtin" = { fg = "blue" } # +"constant.builtin.boolean" = { fg = "blue" } # +"constant.character" = { fg = "blue" } # +"constant.character.escape" = { fg = "yellow" } # +"constant.numeric" = { fg = "blue" } # numbers +"constant.numeric.integer" = { fg = "blue" } # numeric, integer value +"constant.numeric.float" = { fg = "blue" } # numeric, fractional value +"string" = { fg = "blue" } # string +"string.regexp" = { fg = "yellow" } # regular expressions +"string.special" = { fg = "blue" } # +"string.special.path" = { fg = "blue" } # +"string.special.url" = { fg = "blue" } # +"string.special.symbol" = { fg = "blue" } # erlang/elixir atoms, ruby symbols, clojure keywords +"comment" = { fg = "gray" } # code comment +"comment.line" = { fg = "gray" } # single line comment +"comment.block" = { fg = "gray" } # multi-line comment +"comment.block.documentation" = { fg = "gray" } # documentation comments +"variable" = { fg = "orange" } # variable +"variable.builtin" = { fg = "orange" } # reserved language variables (self, this, super, etc) +"variable.parameter" = { fg = "yellow" } # function parameter +"variable.other" = { fg = "green" } # +"variable.other.member" = { fg = "green" } # fields of composite data types (structs, unions) +"label" = { fg = "blue" } # e.g. 'static 'a (tic status) +"punctuation" = { fg = "white" } # +"punctuation.delimiter" = { fg = "white" } # commas, colons +"punctuation.bracket" = { fg = "orange" } # parantheses, angle brackets, etc +"punctuation.special" = { fg = "yellow" } # string interpolation brackets +"keyword" = { fg = "red" } # e.g. impl, struct, enum, trait, let, etc +"keyword.control" = { fg = "red" } # e.g. use +"keyword.control.conditional" = { fg = "red" } # e.g. if, else, etc +"keyword.control.repeat" = { fg = "red" } # e.g. for, while, loop, etc +"keyword.control.return" = { fg = "red" } # return keyword +"keyword.control.exception" = { fg = "red" } # +"keyword.operator" = { fg = "blue" } # or, in, etc +"keyword.directive" = { fg = "white" } # prepocessor directives (#if in C) +"keyword.function" = { fg = "red" } # fn, func +"keyword.storage" = { fg = "red" } # keywords describing how things are stored +"keyword.storage.type" = { fg = "red" } # type of something (class, function, var, let, etc) +"keyword.storage.modifier" = { fg = "green" } # static, mut, const, ref, etc +"operator" = { fg = "white" } # AND, OR, ||, +=, >, etc +"function" = { fg = "purple" } # +"function.builtin" = { fg = "purple" } # function name +"function.method" = { fg = "green" } # +"function.macro" = { fg = "green" } # +"function.special" = { fg = "yellow" } # preprocessor in C +"tag" = { fg = "green" } # tags like in html +"tag.builtin" = { fg = "green" } # +"namespace" = { fg = "white" } # +#"special" = { fg = "default" } # +"diff" = { fg = "white" } # +"diff.plus" = { fg = "green" } # additions +"diff.plus.gutter" = { fg = "green" } # gutter indicator +"diff.minus" = { fg = "red" } # deletions +"diff.minus.gutter" = { fg = "red" } # gutter indicator +"diff.delta" = { fg = "brown" } # modifications +"diff.delta.moved" = { fg = "brown" } # renamed or moved files/changes +"diff.delta.gutter" = { fg = "brown" } # gutter indicator -# Markup -"markup.heading" = { fg = "normal", modifiers = ["bold"] } -"markup.list" = { fg = "normal" } -"markup.bold" = { modifiers = ["bold"] } -"markup.italic" = { modifiers = ["italic"] } -"markup.link.url" = { fg = "blue" } -"markup.link.text" = { fg = "gray" } -"markup.quote" = { fg = "green", modifiers = ["italic"] } -"markup.raw" = { fg = "blue" } +# MARKUP, SYNAX HIGHLIGHTING AND INTERFACE HYBRID +# "markup" = { fg = "default" } # +# "markup.normal.completion" = { fg = "default" } # for completion doc popup ui +# "markup.normal.hover" = { fg = "default" } # for hover popup ui +# "markup.heading" = { fg = "default" } # +"markup.heading.marker" = { fg = "blaze_orange" } # heading marker "#" +"markup.heading.1" = { fg = "crystal_blue", modifiers = ["bold"] } # heading h1 +"markup.heading.2" = { fg = "sky_blue", modifiers = ["bold"] } # heading h2 +"markup.heading.3" = { fg = "dreamy_blue", modifiers = ["bold"] } # heading h3 +"markup.heading.4" = { fg = "crystal_blue" } # heading h4 +"markup.heading.5" = { fg = "sky_blue" } # heading h5 +"markup.heading.6" = { fg = "dreamy_blue" } # heading h6 +# "markup.heading.completion" = { fg = "default" } # for completion doc popup ui # +# "markup.heading.hover" = { fg = "default" } # for hover popup ui # +"markup.list" = { fg = "blaze_orange" } # +"markup.list.unnumbered" = { fg = "blaze_orange" } # unnumbered lists symbol '-' +"markup.list.numbered" = { fg = "blaze_orange" } # numbered lists symbol '1, 2, 3, etc' +"markup.list.cheched" = { fg = "blaze_orange" } # checked list symbol '[x]' +"markup.list.unchecked" = { fg = "blaze_orange" } # unchecked list symbol '[ ]' +"markup.bold" = { fg = "dreamy_blue", modifiers = ["bold"] } # bold text +"markup.italic" = { fg = "dreamy_blue", modifiers = ["italic"] } # italic text +"markup.strikethrough" = { fg = "dreamy_blue", modifiers = ["crossed_out"] } # crossed over text +"markup.link" = { fg = "crystal_blue", underline = { color = "light_purple", style = "line" } } # links +"markup.link.url" = { fg = "slate_purple", underline = { color = "slate_purple", style = "line" } } # url part of the link '![link_text](https://example.com)' +"markup.link.label" = { fg = "default" } +"markup.link.text" = { fg = "crystal_blue", modifiers = ["bold"] } # link_text part of the link '![link_text](https://example.com)' +"markup.quote" = { fg = "crystal_blue", modifiers = ["italic"] } # quoted text +"markup.raw" = { fg = "misty_white" } # +"markup.raw.inline" = { fg = "misty_white" } # raw inline 'dd if=/dev/null of=/dev/sdb' +# "markup.raw.inline.completion" = { fg = "default" } # for completion doc popup ui +# "markup.raw.inline.hover" = { fg = "default" } # for hover popup ui +"markup.raw.block" = { fg = "misty_white" } # raw block, e.g. code blocks -# Interface -"ui.background" = { fg = "normal", bg = "default" } -"ui.help" = { fg = "normal", bg = "dark" } -"ui.linenr" = { fg = "gray" } -"ui.linenr.selected" = { fg = "orange" } -"ui.menu" = { fg = "gray", bg = "dark" } -"ui.menu.selected" = { fg = "dark", bg = "blue" } -"ui.popup" = { fg = "gray", bg = "dark" } -"ui.selection" = { bg = "smark" } -"ui.selection.primary" = { bg = "pmark" } -"ui.statusline" = { fg = "normal", bg = "dark" } -"ui.statusline.normal" = { fg = "green", bg = "list", modifiers = ["reversed"] } -"ui.statusline.insert" = { fg = "orange", bg = "list", modifiers = ["reversed"] } -"ui.statusline.select" = { fg = "blue", bg = "list", modifiers = ["reversed"] } -"ui.statusline.inactive" = { fg = "gray", bg = "list" } -"ui.text" = { fg = "normal" } -"ui.text.focus" = { fg = "green" } -"ui.window" = { fg = "dark" } -"ui.cursor" = { modifiers = ["reversed"] } -"ui.cursor.match" = { fg = "orange", modifiers = ["bold"] } -"ui.cursor.primary" = { modifiers = ["reversed"] } -"ui.cursorline.primary" = { bg = "list" } -"ui.cursorline.secondary" = { bg = "dark" } -"ui.cursorcolumn.primary" = { bg = "list" } -"ui.cursorcolumn.secondary" = { bg = "dark" } -"ui.virtual.ruler" = { bg = "rustic_red" } -"ui.virtual.whitespace" = { fg = "brown" } -"ui.virtual.indent-guide" = { fg = "brown" } -"ui.virtual.inlay-hint" = { fg = "gray"} -"ui.virtual.wrap" = { fg = "yellow"} -"ui.gutter" = { bg = "default" } -"ui.gutter.selected" = { bg = "dark" } -"ui.virtual.jump-label" = { modifiers = ["reversed"] } -"ui.bufferline.active" = { fg = "yellow", bg = "rustic_red", modifiers = ["bold"] } +# USER INTERFACE +"ui.background" = { bg = "amber_shadow"} # workspace background +"ui.background.separator" = { fg = "misty_white" } # picker separator below input line (space + j) +"ui.gutter" = { bg = "amber_shadow" } # gutter +"ui.gutter.selected" = { bg = "pitch_black" } # gutter for the line the cursor is on +"ui.linenr" = { fg = "slate_gray" } # line numbers +"ui.linenr.selected" = { fg = "blaze_orange", modifiers = ["bold"] } # line number for the line the cursor is on +"ui.statusline" = { fg = "misty_white", bg = "pitch_black" } # statusline, fucused +"ui.statusline.inactive" = { fg = "slate_gray", bg = "dark_steel" } # statusline, unfocused +"ui.statusline.normal" = { fg = "amber_shadow", bg = "leafy_green", modifiers = ["bold"] } # statusline normal mode (if editor.color-modes is enabled) +"ui.statusline.insert" = { fg = "amber_shadow", bg = "blaze_orange", modifiers = ["bold"] } # statusline insert mode (if editor.color-modes is enabled) +"ui.statusline.select" = { fg = "amber_shadow", bg = "sky_blue", modifiers = ["bold"] } # statusline select mode (if editor.color-modes is enabled) +"ui.statusline.separator" = { fg = "misty_white" } # separator character is statusline +"ui.bufferline" = { fg = "slate_gray", modifiers = ["bold"] } # bufferline inactive tab +"ui.bufferline.active" = { fg = "misty_white", bg = "rustic_red" } # bufferline active tab +"ui.bufferline.background" = { bg = "pitch_black" } # bufferline background +"ui.virtual.ruler" = { bg = "rustic_red" } # ruler columns +"ui.virtual.whitespace" = { fg = "brown" } # whitespace characters +"ui.virtual.indent-guide" = { fg = "brown" } # vertical indent width guides +"ui.virtual.inlay-hint" = { fg = "slate_gray" } # inlay hints of all kinds +"ui.virtual.inlay-hint.parameter" = { fg = "slate_gray" } # inlay hints of kind parameter (lsps are not required to set a kind) +"ui.virtual.inlay-hint.type" = { fg = "slate_gray" } # inlay hints of kind type (lsps are not required to set a kind) +"ui.virtual.wrap" = { fg = "slate_gray" } # soft-wrap indicator +"ui.virtual.jump-label" = { modifiers = ["reversed"] } # virtual jump labels (g + w) +"ui.selection" = { bg = "deep_purple" } # slave selections in the editing area +"ui.selection.primary" = { bg = "light_purple" } # primary selection in the editing area +"ui.cursor" = { modifiers = ["reversed"] } # only if "ui.cursor.primary.normal" isn't set +"ui.cursor.normal" = { modifiers = ["reversed"] } # slave cursor block in normal mode +"ui.cursor.insert" = { bg = "rustic_red" } # slave cursor block in insert mode +"ui.cursor.select" = { bg = "deep_purple" } # slave cursor block in select mode +"ui.cursor.match" = { fg = "amber_shadow", bg = "blaze_orange", modifier = ["bold"] } # matching bracket etc +"ui.cursor.primary" = { modifiers = ["reversed"] } # cursor with primary selection (has no effect due to "ui.cursor.primary.normal" is set) +"ui.cursor.primary.normal" = { modifiers = ["reversed"] } # cursor block in normal mode +"ui.cursor.primary.insert" = { fg = "amber_shadow", bg = "blaze_orange" } # cursor block in insert mode +"ui.cursor.primary.select" = { fg = "amber_shadow", bg = "sky_blue" } # cursor block in select mode (not the selected color) +"ui.cursorline.primary" = { bg = "dark_steel" } # line of the primary cursor +"ui.cursorline.secondary" = { bg = "midnight_black"} # lines of secondary cursors +"ui.cursorcolumn.primary" = { bg = "dark_steel" } # column of the primary cursor +"ui.cursorcolumn.secondary" = { bg = "midnight_black" } # columns of secondary cursors -# Diagnostics -"error" = { fg = "red" } -"warning" = { fg = "brown" } -"info" = { fg = "blue" } -"hint" = { fg = "white" } -"diagnostic" = { fg = "yellow", bg = "#3d0c02", modifiers = ["default"] } -"special" = { fg = "blue" } +# USER INTERFACE - MENUS AND POPUP +"ui.popup" = { fg = "misty_white", bg = "midnight_black" } # documentation popups (space + k) +"ui.popup.info" = { fg = "misty_white", bg = "midnight_black" } # prompt for multiple key options, menu border (space, g, z, m, etc) +"ui.window" = { fg = "pitch_black" } # borderlines separating splits +"ui.help" = { fg = "misty_white", bg = "midnight_black" } # description box for commands +"ui.text" = { fg = "misty_white" } # default text style, command prompts, popup text, etc +"ui.text.focus" = { fg = "leafy_green" } # the currently selected line in the picker (space j, space f, space s, etc) +"ui.text.inactive" = { fg = "slate_gray" } # same as ui.text but when the text is inactive e.g. suggestions +"ui.text.info" = { fg = "misty_white", bg = "midnight_black" } # the key: command in ui.popup.info boxes (space, g, z, m, etc) +"ui.menu" = { fg = "ethereal_gray", bg = "pitch_black" } # code and command completion menus ":" +"ui.menu.selected" = { fg = "misty_white", bg = "dark_steel" } # selected autocomplete item +"ui.menu.scroll" = { fg = "slate_gray", bg = "midnight_black" } # scrollbar +"ui.highlight" = { underline = { color = "blaze_orange", style = "line" } } # highlighted lines in the picker preview -[palette] -default = "#0d1117" -normal = "#c9d1d9" -dark = "#010409" -pmark = "#5b3256" -smark = "#32174d" -list = "#161b22" -white = "#f2f0eb" -gray = "#91a3b0" -brown = "#987654" -yellow = "#faa356" -orange = "#ff9000" +# USER INTERFACE - DEBUGGING +# "ui.debug.breakpoint" = {} # debug breakpoint indicator, found in the gutter +# "ui.debug.active" = {} # indicator for the line at which debugging execution is pausedat, found in the gutter +# "ui.highlight.frameline" = {} # line at which debugging execution is paused at + +# User Interface - Diagnostics +"warning" = { fg = "blaze_orange" } # diagnostics warning (gutter) +"error" = { fg = "ruby_glow" } # diagnostics error (gutter) +"info" = { fg = "sky_blue" } # diagnostics info (gutter) +"hint" = { fg = "walnut_brown" } # diagnostics hint (gutter) +"diagnostick" = { modfiers = ["reversed"] } # diagnostics fallback style (editing area) +"diagnostic.hint" = { fg = "amber_shadow", bg = "walnut_brown" } # diagnostics hint (editing area) +"diagnostic.info" = { fg = "misty_white", bg = "dark_steel" } # diagnostics info (editing area) +"diagnostic.warning" = { fg = "amber_shadow", bg = "rustic_amber" } # diagnostics warning (editing area) +"diagnostic.error" = { fg = "misty_white", bg = "rustic_red" } # diagnostics error (editing area) +# "diagnostic.unnecessary" = {} # diagnostics with unnecessary tag (editing area) +# "diagnostic.deprecated" = {} # diagnostics with deprecated tag (editing area) + + +# COLOR NAMES +[palette] +default = "#979800" +default_bg ="#461d9a" + +# PALETTE USER INTERFACE +amber_shadow = "#0d1117" # +midnight_black = "#010409" # +dark_steel = "#161b22" # +pitch_black = "#000000" # +misty_white = "#f2f0eb" # +slate_gray = "#838a97" # +ethereal_gray = "#91a3b0" # +blaze_orange = "#ff9000" # +leafy_green = "#81be83" # +dreamy_blue = "#6eb0ff" # +crystal_blue = "#99c7ff" # +sky_blue = "#45b1e8" # +rustic_red = "#540b0c" # +walnut_brown = "#987654" # +rustic_amber = "#9d5800" # +slate_purple = "#d2a8ff" # +light_purple = "#7533bd" # +deep_purple = "#4c1785" # + +# PALETTE SYNTAX HIGHLIGHTING +black = "#0d1117" red = "#fa7970" -blue = "#45b1e8" green = "#81be83" -purple = "#dda0dd" -rustic_red = "#540b0c" +yellow = "#ffba00" +orange = "#ff9000" +blue = "#45b1e8" +purple = "#d2a8ff" +brown = "#987654" +gray = "#838a97" +white = "#f2f0eb" From bcfb64685a8ffd0333d16437187b445ecb061511 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 27 Apr 2024 13:38:28 +0200 Subject: [PATCH 10/17] Update iroaseta.toml add missing colors --- runtime/themes/iroaseta.toml | 37 ++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/runtime/themes/iroaseta.toml b/runtime/themes/iroaseta.toml index 54ac1c5e519a..2ac4d7472695 100644 --- a/runtime/themes/iroaseta.toml +++ b/runtime/themes/iroaseta.toml @@ -92,7 +92,7 @@ "markup.strikethrough" = { fg = "dreamy_blue", modifiers = ["crossed_out"] } # crossed over text "markup.link" = { fg = "crystal_blue", underline = { color = "light_purple", style = "line" } } # links "markup.link.url" = { fg = "slate_purple", underline = { color = "slate_purple", style = "line" } } # url part of the link '![link_text](https://example.com)' -"markup.link.label" = { fg = "default" } +"markup.link.label" = { fg = "crystal_blue" } "markup.link.text" = { fg = "crystal_blue", modifiers = ["bold"] } # link_text part of the link '![link_text](https://example.com)' "markup.quote" = { fg = "crystal_blue", modifiers = ["italic"] } # quoted text "markup.raw" = { fg = "misty_white" } # @@ -181,23 +181,24 @@ default_bg ="#461d9a" # PALETTE USER INTERFACE amber_shadow = "#0d1117" # -midnight_black = "#010409" # -dark_steel = "#161b22" # -pitch_black = "#000000" # -misty_white = "#f2f0eb" # -slate_gray = "#838a97" # -ethereal_gray = "#91a3b0" # -blaze_orange = "#ff9000" # -leafy_green = "#81be83" # -dreamy_blue = "#6eb0ff" # -crystal_blue = "#99c7ff" # -sky_blue = "#45b1e8" # -rustic_red = "#540b0c" # -walnut_brown = "#987654" # -rustic_amber = "#9d5800" # -slate_purple = "#d2a8ff" # -light_purple = "#7533bd" # -deep_purple = "#4c1785" # +midnight_black = "#010409" +dark_steel = "#161b22" +pitch_black = "#000000" +misty_white = "#f2f0eb" +slate_gray = "#838a97" +ethereal_gray = "#91a3b0" +blaze_orange = "#ff9000" +leafy_green = "#81be83" +dreamy_blue = "#6eb0ff" +crystal_blue = "#99c7ff" +sky_blue = "#45b1e8" +rustic_red = "#540b0c" +ruby_glow = "#fa7970" +walnut_brown = "#987654" +rustic_amber = "#9d5800" +slate_purple = "#d2a8ff" +light_purple = "#7533bd" +deep_purple = "#4c1785" # PALETTE SYNTAX HIGHLIGHTING black = "#0d1117" From 56fe6780d51c971ae8affe030f91772dee8266d6 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 27 Apr 2024 17:36:43 +0200 Subject: [PATCH 11/17] add color theme config --- runtime/themes/ao.toml | 212 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 runtime/themes/ao.toml diff --git a/runtime/themes/ao.toml b/runtime/themes/ao.toml new file mode 100644 index 000000000000..70585e44eddd --- /dev/null +++ b/runtime/themes/ao.toml @@ -0,0 +1,212 @@ +# Theme: Ao +# Author: YardQuit + +# SYNTAX HIGHLIGHTING +"attribute" = { fg = "yellow" } # +"type" = { fg = "white" } # types e.g. return type: Result, String, etc +"type.builtin" = { fg = "white" } # primitive types provided by the language (int, usize) +"type.parameter" = { fg = "white" } # generic type parameter (T) +"type.enum" = { fg = "white" } # +"type.enum.variant" = { fg = "white" } # +"constructor" = { fg = "orange" } # e.g. Ok, Err, etc +"constant" = { fg = "blue" } # const name +"constant.builtin" = { fg = "blue" } # +"constant.builtin.boolean" = { fg = "blue" } # +"constant.character" = { fg = "blue" } # +"constant.character.escape" = { fg = "yellow" } # +"constant.numeric" = { fg = "blue" } # numbers +"constant.numeric.integer" = { fg = "blue" } # numeric, integer value +"constant.numeric.float" = { fg = "blue" } # numeric, fractional value +"string" = { fg = "blue" } # string +"string.regexp" = { fg = "yellow" } # regular expressions +"string.special" = { fg = "blue" } # +"string.special.path" = { fg = "blue" } # +"string.special.url" = { fg = "blue" } # +"string.special.symbol" = { fg = "blue" } # erlang/elixir atoms, ruby symbols, clojure keywords +"comment" = { fg = "gray" } # code comment +"comment.line" = { fg = "gray" } # single line comment +"comment.block" = { fg = "gray" } # multi-line comment +"comment.block.documentation" = { fg = "gray" } # documentation comments +"variable" = { fg = "orange" } # variable +"variable.builtin" = { fg = "orange" } # reserved language variables (self, this, super, etc) +"variable.parameter" = { fg = "yellow" } # function parameter +"variable.other" = { fg = "green" } # +"variable.other.member" = { fg = "green" } # fields of composite data types (structs, unions) +"label" = { fg = "blue" } # e.g. 'static 'a (tic status) +"punctuation" = { fg = "white" } # +"punctuation.delimiter" = { fg = "white" } # commas, colons +"punctuation.bracket" = { fg = "orange" } # parantheses, angle brackets, etc +"punctuation.special" = { fg = "yellow" } # string interpolation brackets +"keyword" = { fg = "red" } # e.g. impl, struct, enum, trait, let, etc +"keyword.control" = { fg = "red" } # e.g. use +"keyword.control.conditional" = { fg = "red" } # e.g. if, else, etc +"keyword.control.repeat" = { fg = "red" } # e.g. for, while, loop, etc +"keyword.control.return" = { fg = "red" } # return keyword +"keyword.control.exception" = { fg = "red" } # +"keyword.operator" = { fg = "blue" } # or, in, etc +"keyword.directive" = { fg = "white" } # prepocessor directives (#if in C) +"keyword.function" = { fg = "red" } # fn, func +"keyword.storage" = { fg = "red" } # keywords describing how things are stored +"keyword.storage.type" = { fg = "red" } # type of something (class, function, var, let, etc) +"keyword.storage.modifier" = { fg = "green" } # static, mut, const, ref, etc +"operator" = { fg = "white" } # AND, OR, ||, +=, >, etc +"function" = { fg = "purple" } # +"function.builtin" = { fg = "purple" } # function name +"function.method" = { fg = "green" } # +"function.macro" = { fg = "green" } # +"function.special" = { fg = "yellow" } # preprocessor in C +"tag" = { fg = "green" } # tags like in html +"tag.builtin" = { fg = "green" } # +"namespace" = { fg = "white" } # +#"special" = { fg = "default" } # +"diff" = { fg = "white" } # +"diff.plus" = { fg = "green" } # additions +"diff.plus.gutter" = { fg = "green" } # gutter indicator +"diff.minus" = { fg = "red" } # deletions +"diff.minus.gutter" = { fg = "red" } # gutter indicator +"diff.delta" = { fg = "brown" } # modifications +"diff.delta.moved" = { fg = "brown" } # renamed or moved files/changes +"diff.delta.gutter" = { fg = "brown" } # gutter indicator + +# MARKUP, SYNAX HIGHLIGHTING AND INTERFACE HYBRID +# "markup" = {} # +# "markup.normal.completion" = {} # for completion doc popup ui +# "markup.normal.hover" = {} # for hover popup ui +"markup.heading" = { fg = "blaze_orange" } # +"markup.heading.marker" = { fg = "blaze_orange" } # heading marker "#" +"markup.heading.1" = { fg = "crystal_blue", modifiers = ["bold"] } # heading h1 +"markup.heading.2" = { fg = "sky_blue", modifiers = ["bold"] } # heading h2 +"markup.heading.3" = { fg = "dreamy_blue", modifiers = ["bold"] } # heading h3 +"markup.heading.4" = { fg = "crystal_blue" } # heading h4 +"markup.heading.5" = { fg = "sky_blue" } # heading h5 +"markup.heading.6" = { fg = "dreamy_blue" } # heading h6 +# "markup.heading.completion" = {} # for completion doc popup ui +# "markup.heading.hover" = {} # for hover popup ui +"markup.list" = { fg = "blaze_orange" } # +"markup.list.unnumbered" = { fg = "blaze_orange" } # unnumbered lists symbol '-' +"markup.list.numbered" = { fg = "blaze_orange" } # numbered lists symbol '1, 2, 3, etc' +"markup.list.cheched" = { fg = "blaze_orange" } # checked list symbol '[x]' +"markup.list.unchecked" = { fg = "blaze_orange" } # unchecked list symbol '[ ]' +"markup.bold" = { fg = "crystal_blue", modifiers = ["bold"] } # bold text +"markup.italic" = { fg = "crystal_blue", modifiers = ["italic"] } # italic text +"markup.strikethrough" = { fg = "crystal_blue", modifiers = ["crossed_out"] } # crossed over text +"markup.link" = { fg = "crystal_blue", underline = { color = "light_purple", style = "line" } } # links +"markup.link.url" = { fg = "slate_purple", underline = { color = "slate_purple", style = "line" } } # url part of the link '![link_text](https://example.com)' +"markup.link.label" = { fg = "crystal_blue" } # +"markup.link.text" = { fg = "crystal_blue", modifiers = ["bold"] } # link_text part of the link '![link_text](https://example.com)' +"markup.quote" = { fg = "winter_sky", modifiers = ["italic"] } # quoted text +"markup.raw" = { fg = "winter_sky" } # +"markup.raw.inline" = { fg = "winter_sky" } # raw inline 'dd if=/dev/null of=/dev/sdb' +# "markup.raw.inline.completion" = {} # for completion doc popup ui +# "markup.raw.inline.hover" = {} # for hover popup ui +"markup.raw.block" = { fg = "white" } # raw block, e.g. code blocks + +# USER INTERFACE +"ui.background" = { bg = "deep_abyss"} # workspace background +"ui.background.separator" = { fg = "winter_sky" } # picker separator below input line (space + j) +"ui.gutter" = { bg = "deep_abyss" } # gutter +"ui.gutter.selected" = { bg = "pitch_black" } # gutter for the line the cursor is on +"ui.linenr" = { fg = "slate_gray" } # line numbers +"ui.linenr.selected" = { fg = "blaze_orange", modifiers = ["bold"] } # line number for the line the cursor is on +"ui.statusline" = { fg = "winter_sky", bg = "twilight_blue" } # statusline, fucused +"ui.statusline.inactive" = { fg = "slate_gray", bg = "pitch_black" } # statusline, unfocused +"ui.statusline.normal" = { fg = "deep_abyss", bg = "leafy_green", modifiers = ["bold"] } # statusline normal mode (if editor.color-modes is enabled) +"ui.statusline.insert" = { fg = "deep_abyss", bg = "blaze_orange", modifiers = ["bold"] } # statusline insert mode (if editor.color-modes is enabled) +"ui.statusline.select" = { fg = "deep_abyss", bg = "sky_blue", modifiers = ["bold"] } # statusline select mode (if editor.color-modes is enabled) +"ui.statusline.separator" = { fg = "winter_sky" } # separator character is statusline +"ui.bufferline" = { fg = "slate_gray", modifiers = ["bold"] } # bufferline inactive tab +"ui.bufferline.active" = { fg = "winter_sky", bg = "twilight_blue" } # bufferline active tab +"ui.bufferline.background" = { bg = "pitch_black" } # bufferline background +"ui.virtual.ruler" = { bg = "stormy_night" } # ruler columns +"ui.virtual.whitespace" = { fg = "stormy_night" } # whitespace characters +"ui.virtual.indent-guide" = { fg = "stormy_night" } # vertical indent width guides +"ui.virtual.inlay-hint" = { fg = "slate_gray" } # inlay hints of all kinds +"ui.virtual.inlay-hint.parameter" = { fg = "slate_gray" } # inlay hints of kind parameter (lsps are not required to set a kind) +"ui.virtual.inlay-hint.type" = { fg = "slate_gray" } # inlay hints of kind type (lsps are not required to set a kind) +"ui.virtual.wrap" = { fg = "slate_gray" } # soft-wrap indicator +"ui.virtual.jump-label" = { modifiers = ["reversed"] } # virtual jump labels (g + w) +"ui.selection" = { bg = "deep_purple" } # slave selections in the editing area +"ui.selection.primary" = { bg = "light_purple" } # primary selection in the editing area +"ui.cursor" = { modifiers = ["reversed"] } # only if "ui.cursor.primary.normal" isn't set +"ui.cursor.normal" = { fg = "winter_sky", bg = "twilight_blue" } # slave cursor block in normal mode +"ui.cursor.insert" = { bg = "rustic_red" } # slave cursor block in insert mode +"ui.cursor.select" = { bg = "deep_purple" } # slave cursor block in select mode +"ui.cursor.match" = { fg = "deep_abyss", bg = "blaze_orange", modifier = ["bold"] } # matching bracket etc +"ui.cursor.primary" = { modifiers = ["reversed"] } # cursor with primary selection (has no effect due to "ui.cursor.primary.normal" is set) +"ui.cursor.primary.normal" = { fg = "deep_abyss", bg = "sky_blue" } # cursor block in normal mode +"ui.cursor.primary.insert" = { fg = "deep_abyss", bg = "blaze_orange" } # cursor block in insert mode +"ui.cursor.primary.select" = { fg = "deep_abyss", bg = "sky_blue" } # cursor block in select mode (not the selected color) +"ui.cursorline.primary" = { bg = "nightfall_blue" } # line of the primary cursor +"ui.cursorline.secondary" = { bg = "midnight_thunder"} # lines of secondary cursors +"ui.cursorcolumn.primary" = { bg = "nightfall_blue" } # column of the primary cursor +"ui.cursorcolumn.secondary" = { bg = "midnight_thunder" } # columns of secondary cursors + +# USER INTERFACE - MENUS AND POPUP +"ui.popup" = { fg = "winter_sky", bg = "midnight_thunder" } # documentation popups (space + k) +"ui.popup.info" = { fg = "winter_sky", bg = "nightfall_blue" } # prompt for multiple key options, menu border (space, g, z, m, etc) +"ui.window" = { fg = "slate_gray" } # borderlines separating splits +"ui.help" = { fg = "winter_sky", bg = "nightfall_blue" } # description box for commands +"ui.text" = { fg = "white" } # default text style, command prompts, popup text, etc +"ui.text.focus" = { fg = "dreamy_blue" } # the currently selected line in the picker (space j, space f, space s, etc) +"ui.text.inactive" = { fg = "slate_gray" } # same as ui.text but when the text is inactive e.g. suggestions +"ui.text.info" = { fg = "winter_sky", bg = "nightfall_blue" } # the key: command in ui.popup.info boxes (space, g, z, m, etc) +"ui.menu" = { fg = "winter_sky", bg = "midnight_thunder" } # code and command completion menus ":" +"ui.menu.selected" = { fg = "winter_sky", bg = "twilight_blue" } # selected autocomplete item +"ui.menu.scroll" = { fg = "crystal_blue", bg = "moonlight_ocean" } # scrollbar +"ui.highlight" = { underline = { color = "sky_blue", style = "line" } } # highlighted lines in the picker preview + +# USER INTERFACE - DEBUGGING +# "ui.debug.breakpoint" = {} # debug breakpoint indicator, found in the gutter +# "ui.debug.active" = {} # indicator for the line at which debugging execution is pausedat, found in the gutter +# "ui.highlight.frameline" = {} # line at which debugging execution is paused at + +# USER INTERFACE - DIAGNOSTICS +"warning" = { fg = "blaze_orange" } # diagnostics warning (gutter) +"error" = { fg = "ruby_glow" } # diagnostics error (gutter) +"info" = { fg = "sky_blue" } # diagnostics info (gutter) +"hint" = { fg = "walnut_brown" } # diagnostics hint (gutter) +"diagnostick" = { modfiers = ["reversed"] } # diagnostics fallback style (editing area) +"diagnostic.hint" = { fg = "deep_abyss", bg = "walnut_brown" } # diagnostics hint (editing area) +"diagnostic.info" = { fg = "winter_sky", bg = "twilight_blue" } # diagnostics info (editing area) +"diagnostic.warning" = { fg = "deep_abyss", bg = "rustic_amber" } # diagnostics warning (editing area) +"diagnostic.error" = { fg = "winter_sky", bg = "rustic_red" } # diagnostics error (editing area) +# "diagnostic.unnecessary" = {} # diagnostics with unnecessary tag (editing area) +# "diagnostic.deprecated" = {} # diagnostics with deprecated tag (editing area) + + +# COLOR NAMES +[palette] +# PALETTE USER INTERFACE +deep_abyss = "#080d15" +stormy_night = "#254862" +nightfall_blue = "#1f2937" +midnight_thunder = "#0d1526" +twilight_blue = "#2c5484" +pitch_black = "#000000" +winter_sky = "#f3f4f6" +slate_gray = "#838a97" +blaze_orange = "#ff9000" +leafy_green = "#81be83" +dreamy_blue = "#6eb0ff" +crystal_blue = "#99c7ff" +sky_blue = "#45b1e8" +moonlight_ocean = "#0c1420" +rustic_red = "#540b0c" +ruby_glow = "#fa7970" +walnut_brown = "#987654" +rustic_amber = "#9d5800" +slate_purple = "#d2a8ff" +light_purple = "#7533bd" +deep_purple = "#4c1785" + +# SYNTAX HIGHLIGHTING +black = "#0d1117" +red = "#fa7970" +green = "#81be83" +yellow = "#ffba00" +orange = "#ff9000" +blue = "#45b1e8" +purple = "#d2a8ff" +brown = "#987654" +gray = "#838a97" +white = "#dadada" From 786dca955484383eb4c966d28346c01d70e1494a Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 27 Apr 2024 18:38:39 +0200 Subject: [PATCH 12/17] chore: correction of color choice --- runtime/themes/ao.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/themes/ao.toml b/runtime/themes/ao.toml index 70585e44eddd..eb3efa772643 100644 --- a/runtime/themes/ao.toml +++ b/runtime/themes/ao.toml @@ -135,7 +135,7 @@ "ui.cursor.primary" = { modifiers = ["reversed"] } # cursor with primary selection (has no effect due to "ui.cursor.primary.normal" is set) "ui.cursor.primary.normal" = { fg = "deep_abyss", bg = "sky_blue" } # cursor block in normal mode "ui.cursor.primary.insert" = { fg = "deep_abyss", bg = "blaze_orange" } # cursor block in insert mode -"ui.cursor.primary.select" = { fg = "deep_abyss", bg = "sky_blue" } # cursor block in select mode (not the selected color) +"ui.cursor.primary.select" = { fg = "winter_sky", bg = "deep_purple" } # cursor block in select mode (not the selected color) "ui.cursorline.primary" = { bg = "nightfall_blue" } # line of the primary cursor "ui.cursorline.secondary" = { bg = "midnight_thunder"} # lines of secondary cursors "ui.cursorcolumn.primary" = { bg = "nightfall_blue" } # column of the primary cursor From 3bb2c72217f6b6df7b441592470c5f4cc7e06263 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 27 Apr 2024 20:43:49 +0200 Subject: [PATCH 13/17] chore: update colors --- runtime/themes/ao.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/runtime/themes/ao.toml b/runtime/themes/ao.toml index eb3efa772643..dbd7e8df9465 100644 --- a/runtime/themes/ao.toml +++ b/runtime/themes/ao.toml @@ -161,14 +161,14 @@ # "ui.highlight.frameline" = {} # line at which debugging execution is paused at # USER INTERFACE - DIAGNOSTICS -"warning" = { fg = "blaze_orange" } # diagnostics warning (gutter) +"warning" = { fg = "lemon_zest" } # diagnostics warning (gutter) "error" = { fg = "ruby_glow" } # diagnostics error (gutter) "info" = { fg = "sky_blue" } # diagnostics info (gutter) "hint" = { fg = "walnut_brown" } # diagnostics hint (gutter) "diagnostick" = { modfiers = ["reversed"] } # diagnostics fallback style (editing area) "diagnostic.hint" = { fg = "deep_abyss", bg = "walnut_brown" } # diagnostics hint (editing area) "diagnostic.info" = { fg = "winter_sky", bg = "twilight_blue" } # diagnostics info (editing area) -"diagnostic.warning" = { fg = "deep_abyss", bg = "rustic_amber" } # diagnostics warning (editing area) +"diagnostic.warning" = { fg = "winter_sky", bg = "rustic_amber" } # diagnostics warning (editing area) "diagnostic.error" = { fg = "winter_sky", bg = "rustic_red" } # diagnostics error (editing area) # "diagnostic.unnecessary" = {} # diagnostics with unnecessary tag (editing area) # "diagnostic.deprecated" = {} # diagnostics with deprecated tag (editing area) @@ -186,6 +186,7 @@ pitch_black = "#000000" winter_sky = "#f3f4f6" slate_gray = "#838a97" blaze_orange = "#ff9000" +lemon_zest = "#ffba00" leafy_green = "#81be83" dreamy_blue = "#6eb0ff" crystal_blue = "#99c7ff" From e829d0aedcf728a24022251c245b5d6453dcb556 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sun, 28 Apr 2024 14:29:41 +0200 Subject: [PATCH 14/17] color modificaton --- runtime/themes/ao.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/themes/ao.toml b/runtime/themes/ao.toml index dbd7e8df9465..8073d83e6d14 100644 --- a/runtime/themes/ao.toml +++ b/runtime/themes/ao.toml @@ -134,7 +134,7 @@ "ui.cursor.match" = { fg = "deep_abyss", bg = "blaze_orange", modifier = ["bold"] } # matching bracket etc "ui.cursor.primary" = { modifiers = ["reversed"] } # cursor with primary selection (has no effect due to "ui.cursor.primary.normal" is set) "ui.cursor.primary.normal" = { fg = "deep_abyss", bg = "sky_blue" } # cursor block in normal mode -"ui.cursor.primary.insert" = { fg = "deep_abyss", bg = "blaze_orange" } # cursor block in insert mode +"ui.cursor.primary.insert" = { fg = "deep_abyss", bg = "ruby_glow" } # cursor block in insert mode "ui.cursor.primary.select" = { fg = "winter_sky", bg = "deep_purple" } # cursor block in select mode (not the selected color) "ui.cursorline.primary" = { bg = "nightfall_blue" } # line of the primary cursor "ui.cursorline.secondary" = { bg = "midnight_thunder"} # lines of secondary cursors @@ -173,7 +173,6 @@ # "diagnostic.unnecessary" = {} # diagnostics with unnecessary tag (editing area) # "diagnostic.deprecated" = {} # diagnostics with deprecated tag (editing area) - # COLOR NAMES [palette] # PALETTE USER INTERFACE From c4e5c6d21828e65349abf83587a6b0d2fd23d5bc Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Mon, 29 Apr 2024 18:02:10 +0200 Subject: [PATCH 15/17] Update ao.toml fix typos --- runtime/themes/ao.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/themes/ao.toml b/runtime/themes/ao.toml index 8073d83e6d14..8c0d558ec6c4 100644 --- a/runtime/themes/ao.toml +++ b/runtime/themes/ao.toml @@ -131,7 +131,7 @@ "ui.cursor.normal" = { fg = "winter_sky", bg = "twilight_blue" } # slave cursor block in normal mode "ui.cursor.insert" = { bg = "rustic_red" } # slave cursor block in insert mode "ui.cursor.select" = { bg = "deep_purple" } # slave cursor block in select mode -"ui.cursor.match" = { fg = "deep_abyss", bg = "blaze_orange", modifier = ["bold"] } # matching bracket etc +"ui.cursor.match" = { fg = "deep_abyss", bg = "blaze_orange", modifiers = ["bold"] } # matching bracket etc "ui.cursor.primary" = { modifiers = ["reversed"] } # cursor with primary selection (has no effect due to "ui.cursor.primary.normal" is set) "ui.cursor.primary.normal" = { fg = "deep_abyss", bg = "sky_blue" } # cursor block in normal mode "ui.cursor.primary.insert" = { fg = "deep_abyss", bg = "ruby_glow" } # cursor block in insert mode @@ -165,7 +165,7 @@ "error" = { fg = "ruby_glow" } # diagnostics error (gutter) "info" = { fg = "sky_blue" } # diagnostics info (gutter) "hint" = { fg = "walnut_brown" } # diagnostics hint (gutter) -"diagnostick" = { modfiers = ["reversed"] } # diagnostics fallback style (editing area) +"diagnostic" = { modfiers = ["reversed"] } # diagnostics fallback style (editing area) "diagnostic.hint" = { fg = "deep_abyss", bg = "walnut_brown" } # diagnostics hint (editing area) "diagnostic.info" = { fg = "winter_sky", bg = "twilight_blue" } # diagnostics info (editing area) "diagnostic.warning" = { fg = "winter_sky", bg = "rustic_amber" } # diagnostics warning (editing area) From 23ab1f16ade5167963016dca827f2f79f8e20b24 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Mon, 29 Apr 2024 22:31:03 +0200 Subject: [PATCH 16/17] Update ao.toml commented out settings that should fallback to its more general setting. --- runtime/themes/ao.toml | 74 +++++++++++++++++++++--------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/runtime/themes/ao.toml b/runtime/themes/ao.toml index 8c0d558ec6c4..7987676cfd6e 100644 --- a/runtime/themes/ao.toml +++ b/runtime/themes/ao.toml @@ -2,7 +2,7 @@ # Author: YardQuit # SYNTAX HIGHLIGHTING -"attribute" = { fg = "yellow" } # +"attribute" = { fg = "yellow" } # e.g. , ,