The search function highlighting is not as handy as it could be: When using the search function, one gets the search term highlighted, e.g. like in this example. (Edit: Since this has already been changed, now you will see the fixed version.)
You see - white text on white background (or almost white, let's say bright both times). I guess this comes, once more, from the default theme, where the text was black/dark. So far I collected this: The CSS class is just called highlight. Together with the file [...]theme5/global.css and especially the following lines
it ends up in the stated result.
That was the easier part (stating the things to improve and giving a hint where). Now, the trickier part is what color the highlight-background should be ... well, surprise me! One idea: What is the complementary color of the post background color (title:#3d3a49, body:#444c58)...?
You see - white text on white background (or almost white, let's say bright both times). I guess this comes, once more, from the default theme, where the text was black/dark. So far I collected this: The CSS class is just called highlight. Together with the file [...]theme5/global.css and especially the following lines
Code:
.highlight {
background: #FFFFCC;
padding: 3px;
}
That was the easier part (stating the things to improve and giving a hint where). Now, the trickier part is what color the highlight-background should be ... well, surprise me! One idea: What is the complementary color of the post background color (title:#3d3a49, body:#444c58)...?