Obsidian title bar color sheme #174
|
Hello, I recently saw in Bryan's obsidian that the title bar has some color scheme. Just wondering whether it comes with some plugins ro need to modify css? Attached you will see what I was meaning. Thanks a lot for your help in advance! |
Answered by
tallguyjenks
Jun 5, 2023
Replies: 1 comment
|
its just CSS targeting the icon itself .lucide-bookmark {
color: var(--neutral-blue);
fill: var(--neutral-blue);
}
.lucide-hash {
color: var(--neutral-orange);
}
.lucide-search, .lucide-git-fork, .lucide-file {
color: var(--light1);
}
.lucide-folder-closed {
color: var(--neutral-yellow);
}
.lucide-clock {
color: var(--neutral-aqua);
}
.lucide-calendar-check {
color: var(--bright-red);
} |
0 replies
Answer selected by
tallguyjenks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

its just CSS targeting the icon itself