From 6c193f40753ca356776ab2dccc3c0ac393725e26 Mon Sep 17 00:00:00 2001 From: Ian Chesal Date: Sat, 30 Dec 2023 11:51:02 -0500 Subject: [PATCH] feat: Add highlights for dashboard-nvim (#7) --- lua/cyberdream/theme.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lua/cyberdream/theme.lua b/lua/cyberdream/theme.lua index 1471be6..8d5f7ea 100644 --- a/lua/cyberdream/theme.lua +++ b/lua/cyberdream/theme.lua @@ -176,6 +176,23 @@ function M.setup() AlphaFooter = { fg = t.cyan }, AlphaButtons = { fg = t.blue }, + -- dashboard-nvim + DashboardHeader = { fg = t.purple }, + DashboardFooter = { fg = t.cyan }, + -- dashboard-nvim: doom theme + DashboardShortCut = { fg = t.orange }, + DashboardDesc = { fg = t.orange }, + DashboardKey = { fg = t.green }, + DashboardIcon = { fg = t.blue }, + -- dashboard-nvim: hyper theme + DashboardProjectTitle = { fg = t.blue }, + DashboardProjectTitleIcon = { fg = t.orange }, + DashboardProjectIcon = { fg = t.orange }, + DashboardMruTitle = { fg = t.blue }, + DashboardMruIcon = { fg = t.orange }, + DashboardFiles = { fg = t.cyan }, + DashboardShortCutIcon = { fg = t.pink }, + -- Telescope TelescopeBorder = { fg = t.bgHighlight }, TelescopePromptTitle = { fg = t.blue },