Skip to content

Commit

Permalink
use inverse background color for result_title
Browse files Browse the repository at this point in the history
In dark theme, the black color was not easily readable.
With additional high contrast mode, the title could not be read at all.

This change uses the inverse background color and should be readable in both cases.
As long as there's only these two themes available, this solution should suffice
  • Loading branch information
Chaosmeister authored Apr 5, 2022
1 parent 84dfcf4 commit 9d21ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion css/fulltextsearch.css
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ input.options_small {
}

.result_title {
color: #000;
color: -1 * var(--color-main-background);
}

.result_extract {
Expand Down

0 comments on commit 9d21ba1

Please sign in to comment.