Skip to content
New issue

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

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

Already on GitHub? # to your account

Add cursorline to Autumn theme #2918

Merged
merged 1 commit into from
Jun 29, 2022
Merged
Changes from all commits
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
5 changes: 4 additions & 1 deletion runtime/themes/autumn.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
"ui.linenr" = { fg = "my_gray4", bg = "my_gray2" }
"ui.popup" = { bg = "my_gray2" }
"ui.window" = { fg = "my_gray4", bg = "my_gray2" }
"ui.linenr.selected" = { fg = "my_gray6", bg = "my_gray2", modifiers = ["bold"]}
"ui.linenr.selected" = { fg = "my_gray6", bg = "my_gray1"}
"ui.selection" = { bg = "my_gray3" }
"comment" = { fg = "my_gray4", modifiers = ["italic"] }
"ui.statusline" = { fg = "my_gray6", bg = "my_gray2" }
"ui.statusline.inactive" = { fg = 'my_gray4', bg = 'my_gray2' }
"ui.cursor" = { fg = "my_gray5", modifiers = ["reversed"] }
"ui.cursor.primary" = { fg = "my_white", modifiers = ["reversed"] }
"ui.cursorline.primary" = { bg = "my_black" }
"ui.cursorline.secondary" = { bg = "my_black" }
"ui.text" = "my_white"
"operator" = "my_white"
"ui.text.focus" = "my_white"
Expand Down Expand Up @@ -64,6 +66,7 @@
"error" = "my_red"

[palette]
my_black = "#242424" # Cursorline
my_gray0 = "#292929" # Default Background
my_gray1 = "#2e2e2e" # Ruler
my_gray2 = "#3a3a3a" # Lighter Background (Used for status bars, line number and folding marks)
Expand Down