Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Theme] Nord Light #2908

Merged
merged 4 commits into from
Jul 1, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add theme
  • Loading branch information
xcdkz committed Jun 28, 2022
commit 6ecdd99cd044062ffe021b08dbba86ac8560b6e2
65 changes: 65 additions & 0 deletions runtime/themes/nord_light.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Author: Two-Six<twopsix@duck.com>

"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"