Dark Theme for ZwiftInsider
zwiftinsider.com - Dark Mode by Nick2bad4u
Imported and mirrored from https://github.com/Nick2bad4u/UserStyles/raw/refs/heads/main/ZwiftInsiderDarkMode.user.css

Details
AuthorNick2bad4u
LicenseUnLicense
Categoryzwiftinsider
Created
Updated
Code size2.6 kB
Code checksum57937104
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name zwiftinsider.com - Dark Mode
@namespace typpi.online
@version 1.1.4
@description Dark Theme for ZwiftInsider
@author Nick2bad4u
@license UnLicense
@homepageURL https://github.com/Nick2bad4u/UserStyles
@supportURL https://github.com/Nick2bad4u/UserStyles/issues
@var color background-color "Background Color" #ffffff
@var color text-color "Text Color" #000000
@var color gradient-start "Gradient Start" #ffffff00
@var color gradient-middle "Gradient Middle" #ffffff00
@var color gradient-end "Gradient End" #ffffffb0
@var color gradient-final "Gradient Final" #000000cc
==/UserStyle== */
@-moz-document domain("zwiftinsider.com") {
:root {
--background-color: var(background-color);
--text-color: var(text-color);
--gradient-start: var(gradient-start);
--gradient-middle: var(gradient-middle);
--gradient-end: var(gradient-end);
--gradient-final: var(gradient-final);
}
/* Invert colors except images and videos */
:is(
html:not([stylus-iframe]),
iframe,
img,
svg,
video,
.tdb_single_bg_featured_image,
body.td-animation-stack-type0
.post
img:not(
.woocommerce-product-gallery img,
.rs-pzimg
),
body.td-animation-stack-type0
.td-animation-stack
.td-lazy-img,
.tdi_59,
.wp-block-toolset-blocks-container.tb-container,
#tdi_82,
.tdi_56,
.td-image-wrap,
.tdi_98,
.tdm-title,
.tds-title,
.tdi_23 .tdb-menu > li > a .tdb-sub-menu-icon,
.tdi_23
.td-subcat-more
.tdb-menu-more-subicon,
.tdb_loop .td-load-more-wrap,
.tdb_loop .td-next-prev-wrap,
.tdb-featured-image-bg,
.ql-snow,
#wpdcom .wpd-form-row .wpd-field
) {
filter: invert(1) hue-rotate(180deg);
}
.tdb_single_bg_featured_image::after {
background: linear-gradient(
180deg,
var(--gradient-start),
var(--gradient-middle) 0%,
var(--gradient-end) 100%,
var(--gradient-final)
);
}
body {
background: var(--background-color) !important;
color: var(--text-color) !important;
}
.td_module_flex_1 .td-thumb-css,
.td_module_flex_3 .td-thumb-css,
.td_module_flex_4 .td-thumb-css,
.td_module_flex_5 .td-thumb-css,
.tdi_110 .td-image-wrap,
.td_block_template_1 {
filter: unset !important;
}
.tdi_43 .tdb-title-text,
.tdi_59 .tdm-descr,
.tdb_header_menu
.tdb-menu
> li
> a
.tdb-menu-item-text,
.tdb_header_menu .tdb-menu > li > a span {
color: var(--text-color);
}
.td-big-grid-flex .td-module-title a {
color: var(--text-color) !important;
}
}