|
| 1 | +local Util = require("tokyonight.util") |
| 2 | + |
| 3 | +local M = {} |
| 4 | + |
| 5 | +M.url = "https://github.com/rcarriga/nvim-notify" |
| 6 | + |
| 7 | +---@type tokyonight.HighlightsFn |
| 8 | +function M.get(c, opts) |
| 9 | + -- stylua: ignore |
| 10 | + return { |
| 11 | + SnacksNotifierDebug = { fg = c.fg, bg = opts.transparent and c.none or c.bg }, |
| 12 | + SnacksNotifierBorderDebug = { fg = Util.blend_bg(c.comment, 0.4), bg = opts.transparent and c.none or c.bg }, |
| 13 | + SnacksNotifierIconDebug = { fg = c.comment }, |
| 14 | + SnacksNotifierTitleDebug = { fg = c.comment }, |
| 15 | + SnacksNotifierError = { fg = c.fg, bg = opts.transparent and c.none or c.bg }, |
| 16 | + SnacksNotifierBorderError = { fg = Util.blend_bg(c.error, 0.4), bg = opts.transparent and c.none or c.bg }, |
| 17 | + SnacksNotifierIconError = { fg = c.error }, |
| 18 | + SnacksNotifierTitleError = { fg = c.error }, |
| 19 | + SnacksNotifierInfo = { fg = c.fg, bg = opts.transparent and c.none or c.bg }, |
| 20 | + SnacksNotifierBorderInfo = { fg = Util.blend_bg(c.info, 0.4), bg = opts.transparent and c.none or c.bg }, |
| 21 | + SnacksNotifierIconInfo = { fg = c.info }, |
| 22 | + SnacksNotifierTitleInfo = { fg = c.info }, |
| 23 | + SnacksNotifierTrace = { fg = c.fg, bg = opts.transparent and c.none or c.bg }, |
| 24 | + SnacksNotifierBorderTrace = { fg = Util.blend_bg(c.purple, 0.4), bg = opts.transparent and c.none or c.bg }, |
| 25 | + SnacksNotifierIconTrace = { fg = c.purple }, |
| 26 | + SnacksNotifierTitleTrace = { fg = c.purple }, |
| 27 | + SnacksNotifierWarn = { fg = c.fg, bg = opts.transparent and c.none or c.bg }, |
| 28 | + SnacksNotifierBorderWarn = { fg = Util.blend_bg(c.warning, 0.4), bg = opts.transparent and c.none or c.bg }, |
| 29 | + SnacksNotifierIconWarn = { fg = c.warning }, |
| 30 | + SnacksNotifierTitleWarn = { fg = c.warning }, |
| 31 | + } |
| 32 | +end |
| 33 | + |
| 34 | +return M |
0 commit comments