seanwcom/Red-Graphite-for-Obsidian

CSS: Search settings text is same color as background

Opened this issue · 1 comments

Issue:

The color of text for the search settings toggle dialog is the same as background color. Therefore description for toggles are not visible.

Expected:

The foreground color for text is adapted to theme style.

Theme Version is 1.0.1

Possible duplicate of #29

One possible (temporary) fix is to create a CSS snippet and copy & paste the code below into it:

/* for coloring the colon and text before it, as well as the search box title */
.suggestion-container .suggestion-item {
    /* color: var(--nav-item-color); */
    color: var(--text-muted);
}

/* for coloring text after the colon */
.suggestion-container .search-suggest-info-text {
    color: var(--text-muted);
}