forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update(theme): adjust base16_transparent and dark_high_contrast (heli…
- Loading branch information
1 parent
3f54731
commit cb90e95
Showing
3 changed files
with
48 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
# Author: GreasySlug <[email protected]> | ||
# This theme is base on base16_theme(Author: NNB <[email protected]>) | ||
|
||
"ui.background" = { fg = "white"} | ||
"ui.background.separator" = { fg = "gray" } | ||
"ui.menu" = { fg = "gray" } | ||
"ui.menu" = { fg = "white" } | ||
"ui.menu.selected" = { modifiers = ["reversed"] } | ||
"ui.menu.scroll" = { fg = "light-gray" } | ||
"ui.linenr" = { fg = "light-gray" } | ||
"ui.linenr.selected" = { fg = "white", modifiers = ["bold"] } | ||
"ui.popup" = { fg = "white" } | ||
"ui.window" = { fg = "white" } | ||
"ui.selection" = { modifiers = [ "reversed"] } | ||
"comment" = { fg = "gray", modifiers = ["italic"] } | ||
"ui.selection" = { bg = "gray" } | ||
"comment" = "light-gray" | ||
"ui.statusline" = { fg = "white" } | ||
"ui.statusline.inactive" = { fg = "gray" } | ||
"ui.statusline.normal" = { fg = "blue", modifiers = ["reversed"] } | ||
"ui.statusline.insert" = { fg = "green", modifiers = ["reversed"] } | ||
"ui.statusline.select" = { fg = "magenta", modifiers = ["reversed"] } | ||
"ui.statusline.normal" = { fg = "black", bg = "blue" } | ||
"ui.statusline.insert" = { fg = "black", bg = "green" } | ||
"ui.statusline.select" = { fg = "black", bg = "magenta" } | ||
"ui.help" = { fg = "light-gray" } | ||
"ui.cursor" = { modifiers = ["reversed"] } | ||
"ui.cursor.match" = { fg = "light-yellow", modifiers = ["underlined"] } | ||
"ui.cursor.match" = { fg = "light-yellow", underline = { color = "light-yellow", style = "line" } } | ||
"ui.cursor.primary" = { modifiers = ["reversed", "slow_blink"] } | ||
"ui.cursor.secondary" = { modifiers = ["reversed"] } | ||
"ui.virtual.ruler" = { fg = "gray", modifiers = ["reversed"] } | ||
"ui.virtual.ruler" = { bg = "gray" } | ||
"ui.virtual.whitespace" = "gray" | ||
"ui.virtual.indent-guide" = "gray" | ||
|
||
|
@@ -44,7 +45,7 @@ | |
"markup.list" = "light-red" | ||
"markup.bold" = { fg = "light-yellow", modifiers = ["bold"] } | ||
"markup.italic" = { fg = "light-magenta", modifiers = ["italic"] } | ||
"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] } | ||
"markup.link.url" = { fg = "yellow", underline = { color = "yellow", style = "line"} } | ||
"markup.link.text" = "light-red" | ||
"markup.quote" = "light-cyan" | ||
"markup.raw" = "green" | ||
|
@@ -53,19 +54,19 @@ | |
"markup.select" = { fg = "magenta" } | ||
|
||
"diff.plus" = "light-green" | ||
"diff.delta" = "yellow" | ||
"diff.delta" = "light-blue" | ||
"diff.delta.moved" = "blue" | ||
"diff.minus" = "light-red" | ||
|
||
"ui.gutter" = "gray" | ||
"info" = "light-blue" | ||
"hint" = "gray" | ||
"debug" = "gray" | ||
"warning" = "yellow" | ||
"error" = "light-red" | ||
"ui.gutter" = "gray" | ||
"info" = "light-blue" | ||
"hint" = "light-gray" | ||
"debug" = "light-gray" | ||
"warning" = "light-yellow" | ||
"error" = "light-red" | ||
|
||
"diagnostic" = { modifiers = ["underlined"] } | ||
"diagnostic.info" = { fg = "light-blue", modifiers = ["underlined"] } | ||
"diagnostic.hint" = { fg = "gray", modifiers = ["underlined"] } | ||
"diagnostic.debug" ={ fg ="gray", modifiers = ["underlined"] } | ||
"diagnostic.warning" = { fg = "yellow", modifiers = ["underlined"] } | ||
"diagnostic.error" = { fg ="light-red", modifiers = ["underlined"] } | ||
"diagnostic.info" = { underline = { color = "light-blue", style = "dotted" } } | ||
"diagnostic.hint" = { underline = { color = "light-gray", style = "double_line" } } | ||
"diagnostic.debug" = { underline ={ color ="light-gray", style = "dashed" } } | ||
"diagnostic.warning" = { underline = { color = "light-yellow", style = "curl" } } | ||
"diagnostic.error" = { underline = { color ="light-red", style = "curl" } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters