aboutsummaryrefslogtreecommitdiff
path: root/runtime/themes/nord_light.toml
diff options
context:
space:
mode:
authortwo-six2022-07-01 09:08:27 +0000
committerGitHub2022-07-01 09:08:27 +0000
commit444bc24a261ce02618cb73425d3847e554c83156 (patch)
tree8d43f9496f96de075fd3808bdc7e39d6f36cab47 /runtime/themes/nord_light.toml
parent051a7f06064a545d05276a2aae622e54548a095a (diff)
[Theme] Nord Light (#2908)
* add theme * updated nord_light * update to colors * last update to colors
Diffstat (limited to 'runtime/themes/nord_light.toml')
-rw-r--r--runtime/themes/nord_light.toml67
1 files changed, 67 insertions, 0 deletions
diff --git a/runtime/themes/nord_light.toml b/runtime/themes/nord_light.toml
new file mode 100644
index 00000000..9afb1dee
--- /dev/null
+++ b/runtime/themes/nord_light.toml
@@ -0,0 +1,67 @@
+# Author: Two-Six<twopsix@duck.com>
+
+"ui.background" = {bg="nord6"}
+"ui.text" = "nord0"
+"ui.selection" = {bg="nord7", fg="nord6"}
+"ui.statusline" = {bg="nord4"}
+"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"}
+"ui.linenr.selected" = {fg="nord0", bg="nord5"}
+"ui.menu" = {bg="nord4"}
+"ui.menu.selected" = {bg="nord5"}
+"ui.popup" = {bg="nord4"}
+
+"diagnostic.error" = {fg="nord11", modifiers=["bold"]}
+"diagnostic.warning" = {bg="nord13", modifiers=["bold"]}
+"diagnostic.hint" = {fg="nord13", modifiers=["bold"]}
+
+"constant.numeric" = {fg="nord15"}
+"constant.builtin" = {fg="nord15"}
+
+"keyword" = {fg="nord2"}
+"keyword.control" = {fg="nord2"}
+"keyword.function" = {fg="nord2"}
+
+"function" = {fg="nord3"}
+"function.macro" = {fg="nord10", modifiers=["bold"]}
+"function.method" = {fg="nord0"}
+"function.builtin" = {fg="nord10"}
+
+"variable.builtin" = {fg="nord3"}
+"variable.other" = {fg="nord3"}
+"variable" = {fg="nord0"}
+
+"string" = "nord14"
+"comment" = "nord7"
+"namespace" = {fg="nord10"}
+"attribute" = {fg="nord10"}
+"type" = {fg="nord10"}
+
+"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]
+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"