Skip to content

Commit

Permalink
Add bufferline colors to 15 themes (#3881)
Browse files Browse the repository at this point in the history
Themes:

* acme
* ayu_dark
* ayu_light
* ayu_mirage
* base16_default_dark
* base16_default_light
* bogster
* catppuccin_frappe
* catppuccin_latte
* catppuccin_macchiato
* catppuccin_mocha
* darcula
* dark_plus
* doom_acario_dark
* emacs
  • Loading branch information
txtyash authored Sep 23, 2022
1 parent 0d8d8a4 commit 42e30e7
Show file tree
Hide file tree
Showing 15 changed files with 46 additions and 4 deletions.
2 changes: 2 additions & 0 deletions runtime/themes/acme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
"diagnostic.error" = {bg="white", modifiers=["bold"]}
"diagnostic.warning" = {bg="white", modifiers=["bold"]}
"diagnostic.hint" = {bg="white", modifiers=["bold"]}
"ui.bufferline" = { fg = "indent", bg = "acme_bar_bg" }
"ui.bufferline.active" = { fg = "black", bg = "acme_bg" }

[palette]
white = "#ffffff"
Expand Down
2 changes: 2 additions & 0 deletions runtime/themes/ayu_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
"ui.bufferline" = { fg = "gray", bg = "background" }
"ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" }

"special" = { fg = "orange" }

Expand Down
3 changes: 3 additions & 0 deletions runtime/themes/ayu_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
"ui.bufferline" = { fg = "gray", bg = "dark_gray" }
"ui.bufferline.active" = { fg = "dark", bg = "background" }

"special" = { fg = "orange" }

Expand All @@ -76,3 +78,4 @@ magenta = "#a37acc"
orange = "#fa8d3e"
red = "#f07171"
yellow = "#ffaa33"
dark = "#131721"
2 changes: 2 additions & 0 deletions runtime/themes/ayu_mirage.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
"ui.bufferline" = { fg = "gray", bg = "black" }
"ui.bufferline.active" = { fg = "foreground", bg = "background" }

"special" = { fg = "orange" }

Expand Down
3 changes: 3 additions & 0 deletions runtime/themes/base16_default_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@
"warning" = "base09"
"error" = "base08"

"ui.bufferline" = { fg = "base04", bg = "base00" }
"ui.bufferline.active" = { fg = "base06", bg = "base01" }

[palette]
base00 = "#181818" # Default Background
base01 = "#282828" # Lighter Background (Used for status bars, line number and folding marks)
Expand Down
3 changes: 3 additions & 0 deletions runtime/themes/base16_default_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@
"warning" = "base09"
"error" = "base08"

"ui.bufferline" = { fg = "base04", bg = "base01" }
"ui.bufferline.active" = { fg = "base07", bg = "base00" }

[palette]
base00 = "#f8f8f8" # Default Background
base01 = "#e8e8e8" # Lighter Background (Used for status bars, line number and folding marks)
Expand Down
2 changes: 2 additions & 0 deletions runtime/themes/bogster.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
"ui.cursorline" = { bg = "#131920" }
"ui.statusline" = { fg = "#e5ded6", bg = "#232d38" }
"ui.statusline.inactive" = { fg = "#c6b8ad", bg = "#232d38" }
"ui.bufferline" = { fg = "#627d9d", bg = "#131920" }
"ui.bufferline.active" = { fg = "#e5ded6", bg = "#232d38" }
"ui.popup" = { bg = "#232d38" }
"ui.window" = { bg = "#232d38" }
"ui.help" = { bg = "#232d38", fg = "#e5ded6" }
Expand Down
5 changes: 4 additions & 1 deletion runtime/themes/catppuccin_frappe.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }

"ui.bufferline" = { fg = "subtext1", bg = "mantle" }
"ui.bufferline.active" = { fg = "text", bg = "surface0", modifiers = ["bold"] }

"ui.popup" = { fg = "text", bg = "surface0" }
"ui.window" = { fg = "crust" }
"ui.help" = { fg = "overlay2", bg = "surface0" }
Expand Down Expand Up @@ -134,4 +137,4 @@ crust = "#232634"

# derived colors by blending existing palette colors
cursorline = "#3b3f52"
secondary_cursor = "#b8a5a6"
secondary_cursor = "#b8a5a6"
6 changes: 5 additions & 1 deletion runtime/themes/catppuccin_latte.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }

"ui.bufferline" = { fg = "overlay2", bg = "surface1", modifiers = ["italic"] }
"ui.bufferline.active" = { fg = "text", bg = "surface0", modifiers = ["bold"] }
"ui.bufferline.background" = { bg = "surface1" }

"ui.popup" = { fg = "text", bg = "surface0" }
"ui.window" = { fg = "crust" }
"ui.help" = { fg = "overlay2", bg = "surface0" }
Expand Down Expand Up @@ -134,4 +138,4 @@ crust = "#dce0e8"

# derived colors by blending existing palette colors
cursorline = "#e9ebf1"
secondary_cursor = "#e2a99e"
secondary_cursor = "#e2a99e"
5 changes: 4 additions & 1 deletion runtime/themes/catppuccin_macchiato.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }

"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold"] }
"ui.bufferline" = { fg = "overlay1", bg = "mantle" }

"ui.popup" = { fg = "text", bg = "surface0" }
"ui.window" = { fg = "crust" }
"ui.help" = { fg = "overlay2", bg = "surface0" }
Expand Down Expand Up @@ -134,4 +137,4 @@ crust = "#181926"

# derived colors by blending existing palette colors
cursorline = "#303347"
secondary_cursor = "#b6a5a7"
secondary_cursor = "#b6a5a7"
5 changes: 4 additions & 1 deletion runtime/themes/catppuccin_mocha.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }

"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold"] }
"ui.bufferline" = { fg = "overlay1", bg = "mantle" }

"ui.popup" = { fg = "text", bg = "surface0" }
"ui.window" = { fg = "crust" }
"ui.help" = { fg = "overlay2", bg = "surface0" }
Expand Down Expand Up @@ -134,4 +137,4 @@ crust = "#11111b"

# derived colors by blending existing palette colors
cursorline = "#2a2b3c"
secondary_cursor = "#b5a6a8"
secondary_cursor = "#b5a6a8"
2 changes: 2 additions & 0 deletions runtime/themes/darcula.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"ui.virtual.ruler" = { bg = "grey02" }
"ui.virtual.indent-guide" = "grey02"
"ui.virtual.whitespace" = "grey03"
"ui.bufferline" = { fg = "grey04", bg = "grey00" }
"ui.bufferline.active" = { fg = "grey07", bg = "grey02" }

"operator" = "grey05"
"variable" = "white"
Expand Down
4 changes: 4 additions & 0 deletions runtime/themes/dark_plus.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@
"ui.statusline" = { fg = "white", bg = "blue" }
"ui.statusline.inactive" = { fg = "white", bg = "blue" }

"ui.bufferline" = { fg = "text", bg = "widget" }
"ui.bufferline.active" = { fg = "white", bg = "blue" }
"ui.bufferline.background" = { bg = "background" }

"ui.text" = { fg = "text" }
"ui.text.focus" = { fg = "white" }

Expand Down
3 changes: 3 additions & 0 deletions runtime/themes/doom_acario_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
'ui.statusline.normal' = { bg = 'base3' }
'ui.statusline.insert' = { bg = 'base3' }
'ui.statusline.select' = { bg = 'base3' }
'ui.bufferline' = { fg = 'gray', bg = 'base2' }
'ui.bufferline.active' = { fg = 'white', bg = 'base4' }
'ui.bufferline.background' = { bg = 'bg' }
'ui.popup' = { bg = 'bg-alt' }
'ui.window' = { fg = 'gray' }
'ui.help' = { fg = 'fg', bg = 'base2' }
Expand Down
3 changes: 3 additions & 0 deletions runtime/themes/emacs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@
"ui.linenr.selected" = { fg = "gray80" }
"ui.statusline" = { fg = "black", bg = "gray75" }
"ui.statusline.inactive" = { fg = "gray20", bg = "gray90" }
"ui.bufferline" = { fg = "gray36", bg = "gray90", modifiers = ["underlined"] }
"ui.bufferline.active" = { fg = "gray0", bg = "gray99" }
"ui.bufferline.background" = { bg = "gray75" }
"ui.popup" = { fg = "black", bg = "gray97" }
"ui.popup.info" = { fg = "black", bg = "gray97" }
"ui.window" = { fg = "black" }
Expand Down

0 comments on commit 42e30e7

Please sign in to comment.