ohne-makler.net in dark/night mode
ohne-makler.net dark mode by s-light
Details
Authors-light
LicenseCC0
Categoryohne-makler.net
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name ohne-makler.net dark mode
@namespace github.com/s-light/
@version 1.0.0
@description ohne-makler.net in dark/night mode
@author Stefan Krüger s-light.eu
==/UserStyle== */
@-moz-document domain("ohne-makler.net") {
/* global */
:root {
--bg: black;
--bg-light: hsl(250, 100%, 10%);
--bg-highlight: hsl(250, 100%, 30%);
--bg-highlight2: hsl(250, 100%, 50%);
--bg-gradient: linear-gradient( to bottom,
var(--bg-highlight),
var(--bg-highlight2));
--bg-gradient-dark: linear-gradient( to bottom,
var(--bg-light),
var(--bg-highlight));
--text: hsl(42, 65%, 50%);
--text-highlight: hsl(170, 100%, 50%);
}
}
@-moz-document domain("ohne-makler.net") {
html,
body {
background: var(--bg);
color: var(--text);
}
.bg-primary-25 {
background: var(--bg);
}
.bg-white {
background: var(--bg-light);
}
.text-slate-700,
.text-slate-800,
.text-slate-900 {
color: var(--text);
}
}