This userstyle lowers the brightness of all webpages to 60%, making them appear darker.
💡Darken All Webpages🕶 by buhoho
Details
Authorbuhoho
LicenseMIT
CategoryGeneral
Created
Updated
Size436 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 💡Darken All Webpages🕶
@version 20240323.21.00
@namespace userstyles.world/user/buhoho
@description This userstyle lowers the brightness of all webpages to 60%, making them appear darker.
@license MIT
@preprocessor default
==/UserStyle== */
@-moz-document url-prefix("http://"), url-prefix("https://") {
html:not(iframe html) {
filter: brightness(60%);
}
}