mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 17:36:19 +04:00
feat(theme): solarized: add cursorline, ruler, indent guide (#2962)
This commit is contained in:
parent
2ac1de305e
commit
f392e35439
@ -80,9 +80,15 @@
|
|||||||
# 主光标/selectio
|
# 主光标/selectio
|
||||||
"ui.cursor.primary" = { fg = "base03", bg = "base1" }
|
"ui.cursor.primary" = { fg = "base03", bg = "base1" }
|
||||||
"ui.cursor.select" = { fg = "base02", bg = "cyan" }
|
"ui.cursor.select" = { fg = "base02", bg = "cyan" }
|
||||||
|
"ui.cursorline.primary" = { bg = "base02" }
|
||||||
|
"ui.cursorline.secondary" = { bg = "base025" }
|
||||||
|
|
||||||
"ui.selection" = { bg = "base0175" }
|
"ui.selection" = { bg = "base0175" }
|
||||||
"ui.selection.primary" = { bg = "base015" }
|
"ui.selection.primary" = { bg = "base015" }
|
||||||
|
|
||||||
|
"ui.virtual.indent-guide" = { fg = "base02" }
|
||||||
|
"ui.virtual.ruler" = { fg = "red" }
|
||||||
|
|
||||||
# normal模式的光标
|
# normal模式的光标
|
||||||
"ui.cursor" = {fg = "base02", bg = "cyan"}
|
"ui.cursor" = {fg = "base02", bg = "cyan"}
|
||||||
"ui.cursor.insert" = {fg = "base03", bg = "base3"}
|
"ui.cursor.insert" = {fg = "base03", bg = "base3"}
|
||||||
@ -98,6 +104,7 @@
|
|||||||
[palette]
|
[palette]
|
||||||
# 深色 越来越深
|
# 深色 越来越深
|
||||||
base03 = "#002b36"
|
base03 = "#002b36"
|
||||||
|
base025 = "#03303b"
|
||||||
base02 = "#073642"
|
base02 = "#073642"
|
||||||
base0175 = "#16404b"
|
base0175 = "#16404b"
|
||||||
base015 = "#2c4f59"
|
base015 = "#2c4f59"
|
||||||
|
@ -94,9 +94,16 @@
|
|||||||
# main cursor/selection
|
# main cursor/selection
|
||||||
"ui.cursor.primary" = { fg = "base03", bg = "base1" }
|
"ui.cursor.primary" = { fg = "base03", bg = "base1" }
|
||||||
"ui.cursor.select" = { fg = "base02", bg = "cyan" }
|
"ui.cursor.select" = { fg = "base02", bg = "cyan" }
|
||||||
|
|
||||||
|
"ui.cursorline.primary" = { bg = "base02" }
|
||||||
|
"ui.cursorline.secondary" = { bg = "base025" }
|
||||||
|
|
||||||
"ui.selection" = { bg = "base0175" }
|
"ui.selection" = { bg = "base0175" }
|
||||||
"ui.selection.primary" = { bg = "base015" }
|
"ui.selection.primary" = { bg = "base015" }
|
||||||
|
|
||||||
|
"ui.virtual.indent-guide" = { fg = "base02" }
|
||||||
|
"ui.virtual.ruler" = { fg = "red" }
|
||||||
|
|
||||||
# normal模式的光标
|
# normal模式的光标
|
||||||
# normal mode cursor
|
# normal mode cursor
|
||||||
"ui.cursor" = {fg = "base02", bg = "cyan"}
|
"ui.cursor" = {fg = "base02", bg = "cyan"}
|
||||||
@ -135,4 +142,5 @@ base01 = '#93a1a1'
|
|||||||
base015 = '#c5c8bd'
|
base015 = '#c5c8bd'
|
||||||
base0175 = '#dddbcc'
|
base0175 = '#dddbcc'
|
||||||
base02 = '#eee8d5'
|
base02 = '#eee8d5'
|
||||||
|
base025 = '#f5eedb'
|
||||||
base03 = '#fdf6e3'
|
base03 = '#fdf6e3'
|
||||||
|
Loading…
Reference in New Issue
Block a user