https://github.com/novustheory/roblox-dark-themes
Dark themes for Roblox with several other changes
https://github.com/novustheory/roblox-dark-themes
roblox theme userstyle
Last synced: 9 months ago
JSON representation
Dark themes for Roblox with several other changes
- Host: GitHub
- URL: https://github.com/novustheory/roblox-dark-themes
- Owner: NovusTheory
- License: other
- Created: 2019-01-14T05:24:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T19:52:27.000Z (over 5 years ago)
- Last Synced: 2025-01-13T20:34:19.050Z (over 1 year ago)
- Topics: roblox, theme, userstyle
- Language: CSS
- Size: 83 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# roblox-dark-themes
Dark themes for Roblox with several other changes
# Themes
[Click here to install Dark Theme for developer.roblox.com](https://raw.githubusercontent.com/NovusTheory/roblox-dark-themes/master/developer-roblox-dark.user.css)
# Code Block Theme
The code block theme on Roblox only remembers your decision to be dark theme for the current session. If you'd like it to remember your theme you can set the cookie to an outrageously long time. Here is the code snippet to do that. You may run this in the Inspect Element (Ctrl + Shift + I) console on `developer.roblox.com`.
```javascript
document.cookie = "theme=light-theme%20dark-theme; max-age=" + (86400 * 365) * 9999 + "; path=/;";
```