seanwcom / Red-Graphite-for-Obsidian

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

Solution for text color blended with the background color #29

Open CyberFicus opened 1 year ago

CyberFicus commented 1 year ago

The issue: same color for text and background in search suggestions window image

The solution example code provided by sailKite at the Obsidian discord server

/* for coloring the colon and text before it, as well as the search box title */
body:has(.workspace-tab-header:is(.is-active, .mod-active)[data-type*="graph"]) .suggestion-container .suggestion-item {
    color: red;
}
/* for coloring text after the colon */
body:has(.workspace-tab-header:is(.is-active, .mod-active)[data-type*="graph"]) .suggestion-container .search-suggest-info-text {
    color: blue;
}

Result: image image