Simple dark mode theme for a bookmark manager Webtag. Also features improved contrast and nicer color scheme.
webtag.io × OLED Pro Deep Black Dark Theme by greatday
Details
Authorgreatday
LicenseMIT
Categorywebtag.io
Created
Updated
Size1.3 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This theme is meant for OLED or XDR screens. It's very simple and just fixes some issues and removes annoyances.
Source code
/* ==UserStyle==
@name webtag.io × OLED Pro Deep Black theme
@namespace github.com/openstyles/stylus
@version 1.0.2
@description Dark mode theme for a bookmark manager Webtag
@author GreatDay
@license MIT
==/UserStyle== */
@-moz-document domain("webtag.io") {
:root {
--background: #000;
--background-light: #525252;
--text: #e2e2e2;
--text-light: #909090;
--red: #85261d;
--green: #1d7d45;
--blue: #4772b6;
--link-color: #81a2be;
--link-visited: #b294bb;
--user-link-color: #b294bb;
}
* {
font-family: sans-serif !important;
color: var(--text) !important;
}
a {
text-shadow: #6e0000 0px 1px 3px !important;
}
a:visited {
color: var(--link-visited) !important;
}
button {
color: var(--text);
background-color: var(--blue);
transition: background-color 0.3s ease;
}
button:hover {
background-color: var(--background-light);
}
button:active {
background-color: var(--red);
}
.switch .slider:before {
background-color: var(--blue);
}
a[href="https://www.buymeacoffee.com/vasanthv"] {
display: none;
}
}