Skip to content

Instantly share code, notes, and snippets.

@RenanMsV
Last active January 5, 2026 23:28
Show Gist options
  • Select an option

  • Save RenanMsV/2bc2d52caf5bcaae632aad57013d0cb2 to your computer and use it in GitHub Desktop.

Select an option

Save RenanMsV/2bc2d52caf5bcaae632aad57013d0cb2 to your computer and use it in GitHub Desktop.
IFRS Moodle dark mode theme CSS

IFRS Moodle dark mode theme CSS

Custom CSS for enabling dark mode across most pages of the IFRS Moodle platform.

Chrome extension to load a custom CSS: Custom CSS by Denis.

Alternatively, you can enable the following flag on Chromium-based browsers: chrome://flags/#enable-force-dark
#region-main {
	background: rgb(20 30 40);
  	color: rgb(150 150 150);
}
#region-main .no-overflow div:not(:has(span)):has(br, li) {
 	background: rgb(30 40 50) !important;
  	color: rgb(170 170 170) !important;
}
#nav-drawer, .card, body, a.list-group-item-action {
	background: rgb(20 30 40);
}
a.list-group-item-action:hover {
  background: rgb(20 45 60);
}
.list-group-item {
 	background: rgb(20 45 60);
}
h1, h2, h3, h4, h5, h6 {
    color: #8194c3;
}
a, a:hover, a:visited, a:active {
    color: #848ad4;
}

Verified working as of Jan 2026.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment