Merge pull request #91 from garcia5/fix/ts-rainbow-background-again

fix(ts-rainbow-background): fix guibg highlight
dev
Pocco81 3 years ago committed by GitHub
commit 90536616f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,7 +2,7 @@ local M = {}
function M.get(cp) function M.get(cp)
local transparent_background = require("catppuccin.config").options.transparent_background local transparent_background = require("catppuccin.config").options.transparent_background
local bg_highlight = transparent_background and nil or cp.black2 local bg_highlight = transparent_background and "NONE" or cp.black2
return { return {
rainbowcol1 = {bg = bg_highlight, fg = cp.red}, rainbowcol1 = {bg = bg_highlight, fg = cp.red},
rainbowcol2 = {bg = bg_highlight, fg = cp.teal}, rainbowcol2 = {bg = bg_highlight, fg = cp.teal},

Loading…
Cancel
Save