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

change cursor for copy selection #2323

Merged
merged 5 commits into from
Apr 29, 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 onelight theme variant
  • Loading branch information
erasin committed Apr 26, 2022
commit dbb68d50a2b78789a8beaa7e3de111a76bf961c1
115 changes: 115 additions & 0 deletions runtime/themes/onelight.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
# One Light
# Author : erasin<erasinoo@gmail.com>

"attribute" = { fg = "yellow" }
"comment" = { fg = "gray", modifiers = ["italic"] }

"constant" = { fg = "red" }
"constant.numeric" = { fg = "gold" }
"constant.builtin" = { fg = "gold" }
"constant.character.escape" = { fg = "gold" }

"constructor" = { fg = "blue" }

"function" = { fg = "light-blue" }
"function.builtin" = { fg = "gray" }
"function.macro" = { fg = "red" }

"keyword" = { fg = "purple" }
"keyword.control" = { fg = "purple" }
"keyword.control.import" = { fg = "purple" }
"keyword.directive" = { fg = "purple" }
"keyword.operator" = { fg = "purple" }

"tag" = "yellow"
"label" = { fg = "cyan" }
"namespace" = { fg = "red" }
"operator" = { fg = "red" }
"property" = { fg = "red" }
"special" = { fg = "blue" }
"string" = { fg = "green" }
"module" = { fg = "cyan" }

"type" = { fg = "yellow" }
"type.builtin" = "blue"

"punctuation" = "gray"
"punctuation.delimiter" = "black"
# "punctuation.bracket" = "black"

# "variable" = { fg = "blue" }
"variable.builtin" = { fg = "light-blue" }
"variable.parameter" = { fg = "blue" }
"variable.other.member" = { fg = "red" }

"markup.heading" = { fg = "red" }
# "markup.raw" = { bg = "light-white" }
"markup.raw.inline" = { fg = "green", bg = "light-white" }
"markup.bold" = { fg = "yellow", modifiers = ["bold"] }
"markup.italic" = { fg = "purple", modifiers = ["italic"] }
"markup.list" = { fg = "red" }
"markup.quote" = { fg = "yellow" }
"markup.link.url" = { fg = "cyan", modifiers = ["underlined"] }
"markup.link.text" = { fg = "light-blue" }
"markup.heading.1" = { fg = "red", modifiers = ["bold"] }
"markup.heading.2" = { fg = "glod", modifiers = ["bold"] }
"markup.heading.3" = { fg = "yellow", modifiers = ["bold"] }
"markup.heading.4" = { fg = "green", modifiers = ["bold"] }
"markup.heading.5" = { fg = "blue", modifiers = ["bold"] }
"markup.heading.6" = { fg = "black", modifiers = ["bold"] }

"diff.plus" = "green"
"diff.delta" = "gold"
"diff.minus" = "red"

"diagnostic" = { modifiers = ["underlined"] }
"info" = { fg = "blue", modifiers = ["bold"] }
"hint" = { fg = "green", modifiers = ["bold"] }
"warning" = { fg = "yellow", modifiers = ["bold"] }
"error" = { fg = "red", modifiers = ["bold"] }

"ui.background" = { bg = "white" }

"ui.cursor" = { fg = "black", modifiers = ["reversed"] }
"ui.cursor.primary" = { fg = "white", bg="black", modifiers = [] }
"ui.cursor.match" = { fg = "purple", modifiers = ["underlined", "bold"] }
"ui.cursor.select" = { bg = "purple" }
"ui.cursor.insert" = { bg = "white" }

"ui.highlight" = { bg = "light-white" }

"ui.selection" = { bg = "light-white" }
"ui.selection.primary" = { bg = "light-white", modifiers = ["dim"] }

"ui.virtual" = { fg = "light-white"}
# "ui.virtual.ruler" = {}
# "ui.virtual.whitespace" = {}

"ui.linenr" = { fg = "linenr" }
"ui.linenr.selected" = { fg = "black", modifiers = ["reversed"] }

"ui.statusline" = { fg = "black", bg = "light-white" }
"ui.statusline.inactive" = { fg = "gray", bg = "light-white" }

"ui.text" = { fg = "black" }
"ui.text.focus" = { fg = "red", bg = "light-white", modifiers = ["bold"] }

"ui.help" = { bg = "light-white" }
"ui.popup" = { bg = "light-white" }
"ui.window" = { bg = "light-white" }
"ui.menu.selected" = { fg = "white", bg = "light-blue" }

[palette]
white = "#FAFAFA"
yellow = "#A06600"
blue = "#5556FF"
light-blue = "#2F77FA"
red = "#DC003F"
purple = "#B500A9"
green = "#24A443"
gold = "#D19A66"
cyan = "#0086C1"
black = "#282C34"
light-white = "#EAEAEB"
gray = "#5C6370"
linenr = "#9D9D9F"