From 6ecdd99cd044062ffe021b08dbba86ac8560b6e2 Mon Sep 17 00:00:00 2001 From: two-six Date: Wed, 29 Jun 2022 01:21:38 +0200 Subject: [PATCH 1/4] add theme --- runtime/themes/nord_light.toml | 65 ++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 runtime/themes/nord_light.toml diff --git a/runtime/themes/nord_light.toml b/runtime/themes/nord_light.toml new file mode 100644 index 000000000000..ba8f3c9c6376 --- /dev/null +++ b/runtime/themes/nord_light.toml @@ -0,0 +1,65 @@ +# Author: Two-Six + +"ui.background" = {bg="bg"} +"ui.text" = "black" +"ui.selection" = {bg="bold_blue"} +"ui.statusline" = {bg="bold_white"} +"ui.statusline.inactive" = {bg="white"} +"ui.virtual" = "bold_white" +"ui.cursor.match" = {bg="bold_white"} +"ui.cursor" = {bg="cursor_blue", fg="bg"} +"ui.linenr" = {fg="gray"} +"ui.linenr.selected" = {fg="black", bg="bold_white"} +"ui.menu" = {bg="bold_white"} +"ui.menu.selected" = {bg="bold_blue"} +"ui.popup" = {bg="bold_white"} + +"diagnostic.error" = {fg="red", modifiers=["bold"]} +"diagnostic.warning" = {bg="gray", modifiers=["bold"]} +"diagnostic.hint" = {bg="white", modifiers=["bold"]} + +"constant.numeric" = {fg="red", modifiers=["bold"]} +"constant.builtin" = {fg="const_built"} + +"keyword" = {fg="blue"} +"keyword.control" = {fg="blue"} +"keyword.function" = {fg="blue"} + +"function" = {fg="light_green"} +"function.macro" = {fg="blue", modifiers=["bold"]} +"function.method" = {fg="black"} +"function.builtin" = {fg="red"} + +"variable.builtin" = {fg="blue"} +"variable.other" = {fg="red"} +"variable" = {fg="purple"} + +"string" = "green" +"comment" = "bold_gray" +"namespace" = {fg="red"} +"attribute" = {fg="yellow"} +"type" = {fg="yellow"} + +"markup.heading" = {fg="red", modifiers=["bold"]} +"markup.raw" = {bg="bold_blue", fg="green"} +"markup.link.url" = {fg="red"} +"markup.link.text" = {fg="blue"} +"markup.quote" = {fg="bold_gray", modifiers=["italic"]} + + +[palette] +white = "#ffffff" +bold_white = "#d8dee9" +bg = "#e5e9f0" +gray = "#bec7d8" +black = "#3b4252" +bold_blue = "#b8c5db" +green = "#065905" +light_green = "#29838d" +const_built = "#4b7aaf" +blue = "#3b6ea8" +cursor_blue = "#5d86b6" +red = "#97365b" +yellow = "#a18017" +purple = "#842879" +bold_gray = "#828b9b" From 6313858472960244fd6003602ceeaa5a5d83d0b9 Mon Sep 17 00:00:00 2001 From: two-six Date: Wed, 29 Jun 2022 23:18:09 +0200 Subject: [PATCH 2/4] updated nord_light --- runtime/themes/nord_light.toml | 102 +++++++++++++++++---------------- 1 file changed, 52 insertions(+), 50 deletions(-) diff --git a/runtime/themes/nord_light.toml b/runtime/themes/nord_light.toml index ba8f3c9c6376..b609815f8529 100644 --- a/runtime/themes/nord_light.toml +++ b/runtime/themes/nord_light.toml @@ -1,65 +1,67 @@ # Author: Two-Six -"ui.background" = {bg="bg"} -"ui.text" = "black" +"ui.background" = {bg="nord6"} +"ui.text" = "nord0" "ui.selection" = {bg="bold_blue"} -"ui.statusline" = {bg="bold_white"} +"ui.statusline" = {bg="nord4"} "ui.statusline.inactive" = {bg="white"} "ui.virtual" = "bold_white" -"ui.cursor.match" = {bg="bold_white"} -"ui.cursor" = {bg="cursor_blue", fg="bg"} -"ui.linenr" = {fg="gray"} -"ui.linenr.selected" = {fg="black", bg="bold_white"} -"ui.menu" = {bg="bold_white"} -"ui.menu.selected" = {bg="bold_blue"} -"ui.popup" = {bg="bold_white"} +"ui.cursor.match" = {bg="bold_gray"} +"ui.cursor" = {bg="nord10", fg="nord6"} +"ui.cursorline.primary" = {bg="nord5"} +"ui.linenr" = {fg="nord7"} +"ui.linenr.selected" = {fg="nord0", bg="nord5"} +"ui.menu" = {bg="nord4"} +"ui.menu.selected" = {bg="nord5"} +"ui.popup" = {bg="nord4"} -"diagnostic.error" = {fg="red", modifiers=["bold"]} -"diagnostic.warning" = {bg="gray", modifiers=["bold"]} -"diagnostic.hint" = {bg="white", modifiers=["bold"]} +"diagnostic.error" = {fg="nord11", modifiers=["bold"]} +"diagnostic.warning" = {bg="nord13", modifiers=["bold"]} +"diagnostic.hint" = {fg="nord13", modifiers=["bold"]} -"constant.numeric" = {fg="red", modifiers=["bold"]} -"constant.builtin" = {fg="const_built"} +"constant.numeric" = {fg="nord15"} +"constant.builtin" = {fg="nord15"} -"keyword" = {fg="blue"} -"keyword.control" = {fg="blue"} -"keyword.function" = {fg="blue"} +"keyword" = {fg="nord2"} +"keyword.control" = {fg="nord2"} +"keyword.function" = {fg="nord2"} -"function" = {fg="light_green"} -"function.macro" = {fg="blue", modifiers=["bold"]} -"function.method" = {fg="black"} -"function.builtin" = {fg="red"} +"function" = {fg="nord3"} +"function.macro" = {fg="nord10", modifiers=["bold"]} +"function.method" = {fg="nord0"} +"function.builtin" = {fg="nord10"} -"variable.builtin" = {fg="blue"} -"variable.other" = {fg="red"} -"variable" = {fg="purple"} +"variable.builtin" = {fg="nord3"} +"variable.other" = {fg="nord3"} +"variable" = {fg="nord0"} -"string" = "green" -"comment" = "bold_gray" -"namespace" = {fg="red"} -"attribute" = {fg="yellow"} -"type" = {fg="yellow"} +"string" = "nord14" +"comment" = "nord7" +"namespace" = {fg="nord10"} +"attribute" = {fg="nord10"} +"type" = {fg="nord10"} -"markup.heading" = {fg="red", modifiers=["bold"]} -"markup.raw" = {bg="bold_blue", fg="green"} -"markup.link.url" = {fg="red"} -"markup.link.text" = {fg="blue"} -"markup.quote" = {fg="bold_gray", modifiers=["italic"]} +"markup.heading" = {fg="nord0", modifiers=["bold"]} +"markup.raw" = {fg="nord10"} +"markup.link.url" = {fg="nord3"} +"markup.link.text" = {fg="nord12"} +"markup.quote" = {fg="nord3", modifiers=["italic"]} [palette] -white = "#ffffff" -bold_white = "#d8dee9" -bg = "#e5e9f0" -gray = "#bec7d8" -black = "#3b4252" -bold_blue = "#b8c5db" -green = "#065905" -light_green = "#29838d" -const_built = "#4b7aaf" -blue = "#3b6ea8" -cursor_blue = "#5d86b6" -red = "#97365b" -yellow = "#a18017" -purple = "#842879" -bold_gray = "#828b9b" +nord0 = "#2E3440" +nord1 = "#3B4252" +nord2 = "#434C5E" +nord3 = "#4C566A" +nord4 = "#D8DEE9" +nord5 = "#E5E9F0" +nord6 = "#ECEFF4" +nord7 = "#8FBCBB" +nord8 = "#88C0D0" +nord9 = "#81A1C1" +nord10 = "#5E81AC" +nord11 = "#BF616A" +nord12 = "#D08770" +nord13 = "#EBCB8B" +nord14 = "#A3BE8C" +nord15 = "#B48EAD" From 13c0782deaad7c7d256df13f05ca4d0458fe65ab Mon Sep 17 00:00:00 2001 From: two-six Date: Wed, 29 Jun 2022 23:25:36 +0200 Subject: [PATCH 3/4] update to colors --- runtime/themes/nord_light.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/themes/nord_light.toml b/runtime/themes/nord_light.toml index b609815f8529..a720d6c35352 100644 --- a/runtime/themes/nord_light.toml +++ b/runtime/themes/nord_light.toml @@ -4,9 +4,9 @@ "ui.text" = "nord0" "ui.selection" = {bg="bold_blue"} "ui.statusline" = {bg="nord4"} -"ui.statusline.inactive" = {bg="white"} -"ui.virtual" = "bold_white" -"ui.cursor.match" = {bg="bold_gray"} +"ui.statusline.inactive" = {bg="nord8"} +"ui.virtual" = "nord8" +"ui.cursor.match" = {bg="nord8"} "ui.cursor" = {bg="nord10", fg="nord6"} "ui.cursorline.primary" = {bg="nord5"} "ui.linenr" = {fg="nord7"} From f25a565a0f00302168af2a33493605a42d74fb77 Mon Sep 17 00:00:00 2001 From: two-six Date: Wed, 29 Jun 2022 23:28:15 +0200 Subject: [PATCH 4/4] last update to colors --- runtime/themes/nord_light.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/themes/nord_light.toml b/runtime/themes/nord_light.toml index a720d6c35352..9afb1dee4288 100644 --- a/runtime/themes/nord_light.toml +++ b/runtime/themes/nord_light.toml @@ -2,7 +2,7 @@ "ui.background" = {bg="nord6"} "ui.text" = "nord0" -"ui.selection" = {bg="bold_blue"} +"ui.selection" = {bg="nord7", fg="nord6"} "ui.statusline" = {bg="nord4"} "ui.statusline.inactive" = {bg="nord8"} "ui.virtual" = "nord8"