-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds: base16 theme for Helix editor (#833)
- Loading branch information
1 parent
bb011f9
commit c278b43
Showing
1 changed file
with
50 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Author: RayGervais<[email protected]> | ||
|
||
"ui.background" = { bg = "base00" } | ||
"ui.menu" = "base01" | ||
"ui.menu.selected" = { fg = "base04", bg = "base01" } | ||
"ui.linenr" = {fg = "base01" } | ||
"ui.popup" = { bg = "base01" } | ||
"ui.window" = { bg = "base01" } | ||
"ui.liner.selected" = "base02" | ||
"ui.selection" = "base02" | ||
"comment" = "base03" | ||
"ui.statusline" = {fg = "base04", bg = "base01" } | ||
"ui.help" = { fg = "base04", bg = "base01" } | ||
"ui.cursor" = { fg = "base05", modifiers = ["reversed"] } | ||
"ui.text" = { fg = "base05" } | ||
"operator" = "base05" | ||
"ui.text.focus" = { fg = "base05" } | ||
"variable" = "base08" | ||
"number" = "base09" | ||
"constant" = "base09" | ||
"attributes" = "base09" | ||
"type" = "base0A" | ||
"ui.cursor.match" = { fg = "base0A", modifiers = ["underlined"] } | ||
"strings" = "base0B" | ||
"property" = "base0B" | ||
"escape" = "base0C" | ||
"function" = "base0D" | ||
"constructor" = "base0D" | ||
"special" = "base0D" | ||
"keyword" = "base0E" | ||
"label" = "base0E" | ||
"namespace" = "base0E" | ||
|
||
[palette] | ||
base00 = "#181818" # Default Background | ||
base01 = "#282828" # Lighter Background (Used for status bars, line number and folding marks) | ||
base02 = "#383838" # Selection Background | ||
base03 = "#585858" # Comments, Invisibles, Line Highlighting | ||
base04 = "#b8b8b8" # Dark Foreground (Used for status bars) | ||
base05 = "#d8d8d8" # Default Foreground, Caret, Delimiters, Operators | ||
base06 = "#e8e8e8" # Light Foreground (Not often used) | ||
base07 = "#f8f8f8" # Light Background (Not often used) | ||
base08 = "#ab4642" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted | ||
base09 = "#dc9656" # Integers, Boolean, Constants, XML Attributes, Markup Link Url | ||
base0A = "#f7ca88" # Classes, Markup Bold, Search Text Background | ||
base0B = "#a1b56c" # Strings, Inherited Class, Markup Code, Diff Inserted | ||
base0C = "#86c1b9" # Support, Regular Expressions, Escape Characters, Markup Quotes | ||
base0D = "#7cafc2" # Functions, Methods, Attribute IDs, Headings | ||
base0E = "#ba8baf" # Keywords, Storage, Selector, Markup Italic, Diff Changed | ||
base0F = "#a16946" # Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?> |