Skip to content

Commit 42e30e7

Browse files
authored
Add bufferline colors to 15 themes (#3881)
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
1 parent 0d8d8a4 commit 42e30e7

15 files changed

+46
-4
lines changed

runtime/themes/acme.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
"diagnostic.error" = {bg="white", modifiers=["bold"]}
2121
"diagnostic.warning" = {bg="white", modifiers=["bold"]}
2222
"diagnostic.hint" = {bg="white", modifiers=["bold"]}
23+
"ui.bufferline" = { fg = "indent", bg = "acme_bar_bg" }
24+
"ui.bufferline.active" = { fg = "black", bg = "acme_bg" }
2325

2426
[palette]
2527
white = "#ffffff"

runtime/themes/ayu_dark.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
6060
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
6161
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
62+
"ui.bufferline" = { fg = "gray", bg = "background" }
63+
"ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" }
6264

6365
"special" = { fg = "orange" }
6466

runtime/themes/ayu_light.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
6060
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
6161
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
62+
"ui.bufferline" = { fg = "gray", bg = "dark_gray" }
63+
"ui.bufferline.active" = { fg = "dark", bg = "background" }
6264

6365
"special" = { fg = "orange" }
6466

@@ -76,3 +78,4 @@ magenta = "#a37acc"
7678
orange = "#fa8d3e"
7779
red = "#f07171"
7880
yellow = "#ffaa33"
81+
dark = "#131721"

runtime/themes/ayu_mirage.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
6060
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
6161
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
62+
"ui.bufferline" = { fg = "gray", bg = "black" }
63+
"ui.bufferline.active" = { fg = "foreground", bg = "background" }
6264

6365
"special" = { fg = "orange" }
6466

runtime/themes/base16_default_dark.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
"warning" = "base09"
5555
"error" = "base08"
5656

57+
"ui.bufferline" = { fg = "base04", bg = "base00" }
58+
"ui.bufferline.active" = { fg = "base06", bg = "base01" }
59+
5760
[palette]
5861
base00 = "#181818" # Default Background
5962
base01 = "#282828" # Lighter Background (Used for status bars, line number and folding marks)

runtime/themes/base16_default_light.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
"warning" = "base09"
5555
"error" = "base08"
5656

57+
"ui.bufferline" = { fg = "base04", bg = "base01" }
58+
"ui.bufferline.active" = { fg = "base07", bg = "base00" }
59+
5760
[palette]
5861
base00 = "#f8f8f8" # Default Background
5962
base01 = "#e8e8e8" # Lighter Background (Used for status bars, line number and folding marks)

runtime/themes/bogster.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848
"ui.cursorline" = { bg = "#131920" }
4949
"ui.statusline" = { fg = "#e5ded6", bg = "#232d38" }
5050
"ui.statusline.inactive" = { fg = "#c6b8ad", bg = "#232d38" }
51+
"ui.bufferline" = { fg = "#627d9d", bg = "#131920" }
52+
"ui.bufferline.active" = { fg = "#e5ded6", bg = "#232d38" }
5153
"ui.popup" = { bg = "#232d38" }
5254
"ui.window" = { bg = "#232d38" }
5355
"ui.help" = { bg = "#232d38", fg = "#e5ded6" }

runtime/themes/catppuccin_frappe.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
7171
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }
7272

73+
"ui.bufferline" = { fg = "subtext1", bg = "mantle" }
74+
"ui.bufferline.active" = { fg = "text", bg = "surface0", modifiers = ["bold"] }
75+
7376
"ui.popup" = { fg = "text", bg = "surface0" }
7477
"ui.window" = { fg = "crust" }
7578
"ui.help" = { fg = "overlay2", bg = "surface0" }
@@ -134,4 +137,4 @@ crust = "#232634"
134137

135138
# derived colors by blending existing palette colors
136139
cursorline = "#3b3f52"
137-
secondary_cursor = "#b8a5a6"
140+
secondary_cursor = "#b8a5a6"

runtime/themes/catppuccin_latte.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@
7070
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
7171
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }
7272

73+
"ui.bufferline" = { fg = "overlay2", bg = "surface1", modifiers = ["italic"] }
74+
"ui.bufferline.active" = { fg = "text", bg = "surface0", modifiers = ["bold"] }
75+
"ui.bufferline.background" = { bg = "surface1" }
76+
7377
"ui.popup" = { fg = "text", bg = "surface0" }
7478
"ui.window" = { fg = "crust" }
7579
"ui.help" = { fg = "overlay2", bg = "surface0" }
@@ -134,4 +138,4 @@ crust = "#dce0e8"
134138

135139
# derived colors by blending existing palette colors
136140
cursorline = "#e9ebf1"
137-
secondary_cursor = "#e2a99e"
141+
secondary_cursor = "#e2a99e"

runtime/themes/catppuccin_macchiato.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
7171
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }
7272

73+
"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold"] }
74+
"ui.bufferline" = { fg = "overlay1", bg = "mantle" }
75+
7376
"ui.popup" = { fg = "text", bg = "surface0" }
7477
"ui.window" = { fg = "crust" }
7578
"ui.help" = { fg = "overlay2", bg = "surface0" }
@@ -134,4 +137,4 @@ crust = "#181926"
134137

135138
# derived colors by blending existing palette colors
136139
cursorline = "#303347"
137-
secondary_cursor = "#b6a5a7"
140+
secondary_cursor = "#b6a5a7"

runtime/themes/catppuccin_mocha.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
7171
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }
7272

73+
"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold"] }
74+
"ui.bufferline" = { fg = "overlay1", bg = "mantle" }
75+
7376
"ui.popup" = { fg = "text", bg = "surface0" }
7477
"ui.window" = { fg = "crust" }
7578
"ui.help" = { fg = "overlay2", bg = "surface0" }
@@ -134,4 +137,4 @@ crust = "#11111b"
134137

135138
# derived colors by blending existing palette colors
136139
cursorline = "#2a2b3c"
137-
secondary_cursor = "#b5a6a8"
140+
secondary_cursor = "#b5a6a8"

runtime/themes/darcula.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
"ui.virtual.ruler" = { bg = "grey02" }
2424
"ui.virtual.indent-guide" = "grey02"
2525
"ui.virtual.whitespace" = "grey03"
26+
"ui.bufferline" = { fg = "grey04", bg = "grey00" }
27+
"ui.bufferline.active" = { fg = "grey07", bg = "grey02" }
2628

2729
"operator" = "grey05"
2830
"variable" = "white"

runtime/themes/dark_plus.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@
7676
"ui.statusline" = { fg = "white", bg = "blue" }
7777
"ui.statusline.inactive" = { fg = "white", bg = "blue" }
7878

79+
"ui.bufferline" = { fg = "text", bg = "widget" }
80+
"ui.bufferline.active" = { fg = "white", bg = "blue" }
81+
"ui.bufferline.background" = { bg = "background" }
82+
7983
"ui.text" = { fg = "text" }
8084
"ui.text.focus" = { fg = "white" }
8185

runtime/themes/doom_acario_dark.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@
5353
'ui.statusline.normal' = { bg = 'base3' }
5454
'ui.statusline.insert' = { bg = 'base3' }
5555
'ui.statusline.select' = { bg = 'base3' }
56+
'ui.bufferline' = { fg = 'gray', bg = 'base2' }
57+
'ui.bufferline.active' = { fg = 'white', bg = 'base4' }
58+
'ui.bufferline.background' = { bg = 'bg' }
5659
'ui.popup' = { bg = 'bg-alt' }
5760
'ui.window' = { fg = 'gray' }
5861
'ui.help' = { fg = 'fg', bg = 'base2' }

runtime/themes/emacs.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
"ui.linenr.selected" = { fg = "gray80" }
5555
"ui.statusline" = { fg = "black", bg = "gray75" }
5656
"ui.statusline.inactive" = { fg = "gray20", bg = "gray90" }
57+
"ui.bufferline" = { fg = "gray36", bg = "gray90", modifiers = ["underlined"] }
58+
"ui.bufferline.active" = { fg = "gray0", bg = "gray99" }
59+
"ui.bufferline.background" = { bg = "gray75" }
5760
"ui.popup" = { fg = "black", bg = "gray97" }
5861
"ui.popup.info" = { fg = "black", bg = "gray97" }
5962
"ui.window" = { fg = "black" }

0 commit comments

Comments
 (0)