diff --git a/colors/paper-tonic.lua b/colors/paper-tonic.lua index 0cb2bd7..d530455 100644 --- a/colors/paper-tonic.lua +++ b/colors/paper-tonic.lua @@ -305,8 +305,8 @@ local highlight_groups = { Typedef = 'StorageClass', --[[ 4.1.6. Edge Cases]] - Special = {fg=c_primary_strongest, style='bold'}, - SpecialChar = {fg=c_primary_strongest}, + Special = {fg=c_primary_strongest}, + SpecialChar = {fg=c_primary_strongest, style='bold'}, SpecialKey = 'SpecialCharacter', Tag = {fg=c_primary_strong, style='bold'}, Delimiter = 'Noise', @@ -846,6 +846,8 @@ local highlight_groups = { TSVariable = 'Identifier', TSVariableBuiltin = 'Identifier', + htmlTSTag = 'htmlTag', + --[[ 4.4.9. barbar.nvim ]] BufferCurrent = 'TabLineSel', BufferCurrentIndex = function(self) return {fg=self.InfoMsg.fg, bg=self.BufferCurrent.bg} end, @@ -931,9 +933,11 @@ local highlight_groups = { packerSuccess = function(self) return {fg=c_success, style=self.packerFail.style} end, -- [[ 5.0.1 custom ]] - TabLineFill = { fg=ui_bg, fg=ui_bg, style='italic' }, - TabLineItem = { bg=ui_bg, fg=ui_fg, style='italic' }, - TabLineItemSel = { bg=ui_bg, fg=ui_fg_strong, style='italic' }, + TabLineFill = 'StatusLine', + TabLineItem = {fg=c_fg, bg=c_bg_ui, style='italic'}, + TabLineItemSel = {fg=c_fg_strong, bg=c_bg_ui, style={'italic', 'bold'}}, + TabLineNum = {fg=c_fg_weak, bg=c_bg_ui}, + TabLineNumSel = {fg=c_fg_weak, bg=c_bg_ui} }