About the H2O theme
Posted: Sun Jun 30, 2024 4:50 pm
Is it possible to fix the background and font colours used for text posted between spoiler tags? The contrast makes spoilers near impossible to read using this theme.
Community Cheat Tables of Cheat Engine
https://fearlessrevolution.com/
The easiest solution is to get stylish for your browser and edit the style manually on client side. GreenHouse used to have a theme for FRF but he deleted it unfortunately. You can do this for the search box as well.
Good idea, thanks.The easiest solution is to get stylish for your browser and edit the style manually on client side
Code: Select all
.spoiler-body{
background: #2D2D2D !important;
color: #fe0 !important;
}
Would you share your theme pleasefade2gray wrote: ↑Mon Jul 01, 2024 12:01 pmWorks for me ...
Code: Select all
.spoiler-body{ background: #2D2D2D !important; color: #fe0 !important; }
Code: Select all
/* Fixes for H2O theme */
/* For Spoilers */
.spoiler-body{
background: #2D2D2D !important;
color: #fe0 !important;
}
/* For the Google search field */
#gs_tti50 {
color: black !important
}
table.gstl_50:nth-child(3) {
color: black !important
}
Code: Select all
@-moz-document domain("fearlessrevolution.com") {
/* Fixes for H2O theme */
/* For Spoilers */
.spoiler-body{
background: #2D2D2D !important;
color: #fe0 !important;
}
/* For the Google search field */
#gs_tti50 {
color: black !important
}
table.gstl_50:nth-child(3) {
color: black !important
}
}