- Highly Recommended
- It is created after Stylish become shit.
- Open Source
- GitHub: https://github.com/openstyles/stylus
- Works with Chrome, Brave, Edge, Firefox, Opera, etc
- (Auto format and format checker is not working really well. Just ignore the warnings and errors)
- NOT Recommended
- It cannot handle
@preprocessor stylus
- DON'T USE !
- SHIT!
https://github.com/openstyles/stylus/wiki/Writing-UserCSS
- stylus-lang documentation
- Highly Recommended
- https://userstyles.world/
- Highly Recommended
- developed after UserStyles.org
- Partnership: Stylus = Great
- https://userstyles.org/
- Not user-friendly
- Partnership: Stylish = Shit
- https://greasyfork.org/
- Recommended
/* ==UserStyle==
@name Hello World
@version 0.1.0
@namespace github.com/openstyles
@license MIT
@description Description Here
@author Author
@preprocessor stylus
@var color color-light "Color (Light Theme)" #0cb8da
@var color color-dark "Color (Dark Theme)" #0c74e4
@var number text-font-weight "Text Font-Weight" [400, 100, 900, 100]
@var select text-option "Text Option" {
"none": "none",
"option 1": "option-1"
}
==/UserStyle== */
dummy = 1
// ----- Main Frame ------
@-moz-document url-prefix("https://www.youtube.com/") {
html{
--my-color: color-light;
}
html[dark]{
--my-color: color-dark;
}
}
// ----- Iframe ------
@-moz-document url-prefix("https://www.youtube.com/live_chat") {
html{
--my-iframe-color: color-light;
}
html[dark]{
--my-iframe-color: color-dark;
}
}