seanwcom / Red-Graphite-for-Obsidian

A light theme for Obsidian.md, based on Bear.app's Red Graphite theme.
The Unlicense
197 stars 20 forks source link

Solution for the text color of the menu items is blended with the background color. Red Graphite theme and MAKE.MD plugin #34

Open MaksimZinovev opened 6 months ago

MaksimZinovev commented 6 months ago

Here is my solution for the issue where text color of the menu items is blended with the background color when I hover over menu items. Theme: dark theme of Red Graphite. Plugin: MakeMD

Issue:

image

Fix:

image

Solution:


.mk-menu .menu-item:hover:not(.is-disabled):not(.is-label) {
  color: #ffffff;
}

Save this css snippet in snippet.css file and put it in your snippets folder /.obsidian/snippets. Go to Settings > Appearance > CSS Snippets > enable your snippet.

MaksimZinovev commented 6 months ago

@seanwcom would it be possible to fix this in the theme?

thanks