Last active
May 16, 2021 19:18
-
-
Save Venipa/756e14d41afd2a9e66a365c82db8e055 to your computer and use it in GitHub Desktop.
Userstyle - Dark mode for Adonis JS 5 Docs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name Dark mode for docs.adonisjs.com | |
@namespace venipa.net | |
@version 1.0.0 | |
@description Dark mode for Adonis JS 5 Docs | |
@author Venipa <[email protected]> | |
==/UserStyle== */ | |
@-moz-document domain("docs.adonisjs.com") { | |
:root { | |
--background-color: #101010; | |
--brand-color: #5a45ff; | |
--accent-color: #02e2ff; | |
--text-color: #fafafa; | |
--heading-color: #fff; | |
--mute-color: #dadada; | |
--gray: #303030; | |
--light-gray: #d0d0d0; | |
--lighter-gray: #404040; | |
--pre-background: #292d3e; | |
--brand-mute-color: #d1cdf1; | |
--sidebar-background: #101014; | |
--pre-header-border-color: #40405f; | |
--pre-header-color: #b3b3d0; | |
} | |
.toc, | |
.sidebar { | |
overflow: auto; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment