Customizable Dark Mode for 'strftime.org'
Dark strftime.org by kimitzuni
Details
Authorkimitzuni
LicenseGNU General Public License v2
Categorystrftime.org
Created
Updated
Size700 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Dark strftime.org
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Dark Mode for 'strftime.org'
@author Kimitzuni
@license GNU General Public License v2
@var color bgColor "Background Colour" #282c34
@var color fgColor "Foreground Colour" #abb2bf
@var color tableOddColor "Table (Odd) Background Color" #1e2127
==/UserStyle== */
@-moz-document domain("strftime.org") {
body {
background-color: var(--bgColor);
color: var(--fgColor);
}
tr:nth-child(even) {
background-color: var(--bgColor);
}
tr:nth-child(odd) {
background-color: var(--tableOddColor);
}
}