This is a user script that allows the Snap! Community Site to become dark.
You need a user script manager to do this.
Install the following script:
// ==UserScript==
// @name [Snap!] Dark Mode
// @namespace https://snap-files.joecooldoo.repl.co
// @version 1.0
// @description A dark theme for the official Snap! Website. Thank you the2000 for the template.
// @author Joecooldoo
// @match *https://snap.berkeley.edu/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var styleTag = document.createElement('link');
styleTag.setAttribute('rel', 'stylesheet');
styleTag.setAttribute('href', 'https://snap-files.joecooldoo.repl.co/snapDarkMode.css');
document.head.appendChild(styleTag);
document.getElementsByClassName('logo')[0].src = 'https://snap-files.joecooldoo.repl.co/snap.png';
})();
And boom! Open the homepage to see the changes!