importing rosepine pallete

This commit is contained in:
anupam-basu 2024-10-21 23:16:08 -05:00
commit 3f56d7cb9a

View file

@ -5,8 +5,10 @@
--- local highlights = require("rose-pine.plugins.obsidian") --- local highlights = require("rose-pine.plugins.obsidian")
--- require("obsidian").setup({ highlights = highlights }) --- require("obsidian").setup({ highlights = highlights })
local p = require("rose-pine.palette")
return { return {
ObsidianBullet = { fg = "muted" }, ObsidianBullet = { fg = p.muted },
ObsidianRefText = { underline = true, fg = "iris" }, ObsidianRefText = { underline = true, fg = p.iris },
ObsidianDone = { bold = true, fg = "foam" } ObsidianDone = { bold = true, fg = p.foam }
} }