Skip to content

Commit 4bb81d7

Browse files
mathjiajiageorgeharker
authored andcommitted
feat(dashboard): add dashboard hyper theme (folke#585)
## Description <!-- Describe the big picture of your changes to communicate to the maintainers why we should accept this pull request. --> Currently the dashboard theme is only applied to `Doome` but `Hyper` is missing. ## Related Issue(s) <!-- If this PR fixes any issues, please link to the issue here. - Fixes #<issue_number> --> ## Screenshots <!-- Add screenshots of the changes if applicable. -->
1 parent 97e7f86 commit 4bb81d7

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

lua/tokyonight/groups/dashboard.lua

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
local M = {}
22

3-
M.url = "https://github.com/glepnir/dashboard-nvim"
3+
M.url = "https://github.com/nvimdev/dashboard-nvim"
44

55
---@type tokyonight.HighlightsFn
66
function M.get(c, opts)
77
-- stylua: ignore
88
return {
9-
DashboardShortCut = { fg = c.cyan },
10-
DashboardHeader = { fg = c.blue },
11-
DashboardCenter = { fg = c.magenta },
12-
DashboardFooter = { fg = c.blue1 },
13-
DashboardKey = { fg = c.orange },
14-
DashboardDesc = { fg = c.cyan },
15-
DashboardIcon = { fg = c.cyan, bold = true },
9+
-- General
10+
DashboardHeader = { fg = c.blue },
11+
DashboardFooter = { fg = c.blue1 },
12+
-- Hyper theme
13+
DashboardProjectTitle = { fg = c.cyan },
14+
DashboardProjectTitleIcon = { fg = c.orange },
15+
DashboardProjectIcon = { fg = c.yellow },
16+
DashboardMruTitle = { fg = c.cyan },
17+
DashboardMruIcon = { fg = c.purple },
18+
DashboardFiles = { fg = c.blue },
19+
DashboardShortCutIcon = { fg = c.magenta },
20+
-- Doome theme
21+
DashboardDesc = { fg = c.cyan },
22+
DashboardKey = { fg = c.orange },
23+
DashboardIcon = { fg = c.cyan, bold = true },
24+
DashboardShortCut = { fg = c.cyan },
1625
}
1726
end
1827

0 commit comments

Comments
 (0)