Obsidian-Daily-Notes-Editor
Obsidian-Daily-Notes-Editor copied to clipboard
Allow for unicoloured icon / allow for disabling icon
Feature Requested
Greatly useful plug-in! Thank you. Was hoping for something like that for a while. My only little nag: the colourful icon stands out in the ribbon. Any chance that this could be made to blend in more? Or disabled? What you see in the screenshots is the Minimal theme. (The effect is no less garish in the default theme). Thanks fo r your efforts.
Relevant Screenshot


Checklist
- [X] The feature would be useful to more users than just me.
I join the request to add the ability to make the icon the same color as the rest. I couldn't do it myself through css.
Here's what I did to help this plugin work better with the theme I'm using (Prism). It's mostly reverting to defaults so should work with most themes.
- Create a file (eg. daily-notes-editor.css) in [vault]/.obsidian/snippets
- Add the following code to the file:
.daily-note-title {
color: unset !important;
}
.daily-note-title:hover {
background-color: unset !important;
}
.svg-icon.daily-note svg path {
stroke: var(--icon-color) !important;
}
.svg-icon.daily-note svg g path {
fill: var(--icon-color) !important;
stroke: var(--ribbon-background) !important;
stroke-width: var(--icon-l-stroke-width) !important;
}
- Turn on the snippet in Settings > Appearance.

@sbc Thanks for this! Works wonderfully and solves my issue. Appreciate your css snippet and your posting of it.