A userstyles website/forums dark style, that attempts refine styling throughout the website and forums.
Site Name | Partial | Full |
---|---|---|
Userstyles | ✔️ | |
Userstyles forum | ✔️ |
*️⃣ Full coverage entails that both are fully covered, its not bug free, there are elements that were likely missed. Know not covered parts are the admin/moderator forums portions for lack of access. Help improve coverage by contributing detailed issues or pull requests.
Takes you to userstyles.org.
Installs directly from this repository.
This is only available using Stylus (see the documentation). 🎉
You install it into the editor.
Please refer to the installation documentation for more details.
At the first instance of finding a bug, have a look if there is already an open issue, if so add the required information as described in the issue template.
If your issue is new, please open an issue and report your problem.
At this time any help is appreciated, so if you can help fix a bug or improve the Userstyles Inspired Dark theme, just open a pull request to start the ball rolling.
You will need to ideally:
-
Fork the project.
-
Limit to the K&R (KNF variation style), and 1 TAB INDENTATION (not more, and not less than 1 tab).
-
K&R - KNF Variation Example:
element[attr='value'] { -property: value; }
-
Not Allman
element[property='value'] { -property: value; }
-
Strict space between the
selector
and the{
:/* good */ element[attr='value'] { } /* bad */ element[attr='value']{ }
-
1 tab indentation
/* good */ -property: value; /* bad */ ····property: value; ----property: value; ·property: value;
-
*️⃣ Try to wrap lines at around 80 characters.