Making result titles more visible for Startpage dark theme.
Startpage Dark Theme Visible Titles by Kessi11
Details
AuthorKessi11
LicenseCreative Commons
Categorystartpage
Created
Updated
Size1.2 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Make sure to enable dark mode in Startpage options.
Source code
/* ==UserStyle==
@name Startpage Dark Theme Visible Titles
@namespace github.com/openstyles/stylus
@version 1.2.1
@description Making result titles more visible for Startpage dark theme. Make sure to enable dark mode in Startpage options. Tested July 2024
@author Kai Krull
==/UserStyle== */
@-moz-document domain("startpage.com")
{
/* Orange Titles */
.w-gl__result-title,
.result-title, .result-title h2 {
color: #da3 !important;
}
.w-gl__result-title:visited,
.result-title:visited, .result-title:visited h2 {
color: #dd7133 !important;
}
/* Green URLs */
.w-gl__result-url,
#main .result a:has(span.link-text),
.display-url {
color: #5d9e68 !important;
}
.w-gl__result-url:visited,
#main.result a:visited:has(span.link-text),
.display-url:visited {
color: #3d6845 !important;
}
/* Rounded Background Hover */
.result {
padding-left: 4px;
border-radius: 6px;
}
.w-gl__result:hover,
.result:hover {
background-color: #212835;
}
}