Skip to content

Instantly share code, notes, and snippets.

@Venipa
Last active May 16, 2021 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Venipa/756e14d41afd2a9e66a365c82db8e055 to your computer and use it in GitHub Desktop.
Save Venipa/756e14d41afd2a9e66a365c82db8e055 to your computer and use it in GitHub Desktop.
Userstyle - Dark mode for Adonis JS 5 Docs
/* ==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 <admin@venipa.net>
==/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