Skip to content

Commit 5749102

Browse files
committed
feat(snacks): dashboard styles
1 parent 9758827 commit 5749102

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

lua/tokyonight/groups/dashboard.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function M.get(c, opts)
2020
-- Doome theme
2121
DashboardDesc = { fg = c.cyan },
2222
DashboardKey = { fg = c.orange },
23-
DashboardIcon = { fg = c.cyan, bold = true },
23+
DashboardIcon = { fg = c.cyan },
2424
DashboardShortCut = { fg = c.cyan },
2525
}
2626
end

lua/tokyonight/groups/snacks.lua

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local Util = require("tokyonight.util")
22

33
local M = {}
44

5-
M.url = "https://github.com/rcarriga/nvim-notify"
5+
M.url = "https://github.com/folke/snacks.nvim"
66

77
---@type tokyonight.HighlightsFn
88
function M.get(c, opts)
@@ -28,6 +28,14 @@ function M.get(c, opts)
2828
SnacksNotifierBorderWarn = { fg = Util.blend_bg(c.warning, 0.4), bg = opts.transparent and c.none or c.bg },
2929
SnacksNotifierIconWarn = { fg = c.warning },
3030
SnacksNotifierTitleWarn = { fg = c.warning },
31+
-- Dashboard
32+
SnacksDashboardDesc = { fg = c.cyan },
33+
SnacksDashboardFooter = { fg = c.blue1 },
34+
SnacksDashboardHeader = { fg = c.blue },
35+
SnacksDashboardIcon = { fg = c.blue1 },
36+
SnacksDashboardKey = { fg = c.orange },
37+
SnacksDashboardSpecial = { fg = c.purple },
38+
SnacksDashboardDir = { fg = c.dark3 },
3139
}
3240
end
3341

0 commit comments

Comments
 (0)