Skip to content

Instantly share code, notes, and snippets.

@biast12
Last active June 3, 2024 12:11
Show Gist options
  • Save biast12/71772108e2983f4824d7f9cedb08eeff to your computer and use it in GitHub Desktop.
Save biast12/71772108e2983f4824d7f9cedb08eeff to your computer and use it in GitHub Desktop.
Viking Discord Theme
/**
* @name Viking
* @author Biast12
* @description Viking Discord Theme By Biast12
* @version 2.0.1
* @authorId 648679147085889536
* @authorLink https://twitter.com/Biast12
* @donate https://www.paypal.com/donate/?hosted_button_id=RWB2QFK7CKUM2
* @patreon https://patreon.com/Biast12
* @website https://biast12.info
* @source https://gist.github.com/biast12/71772108e2983f4824d7f9cedb08eeff
*/
/* Import the Viking theme */
@import url("https://api.biast12.site/content/css/VikingTheme/index.css");
// ==UserScript==
// @name Viking Discord Theme
// @author Biast12
// @description Viking Discord Theme By Biast12
// @icon https://www.google.com/s2/favicons?domain=discord.com
// @version 2.0.1
// @namespace https://twitter.com/Biast12
// @homepageURL https://gist.github.com/biast12/71772108e2983f4824d7f9cedb08eeff
// @supportURL https://gist.github.com/biast12/71772108e2983f4824d7f9cedb08eeff
// @updateURL https://gist.github.com/biast12/71772108e2983f4824d7f9cedb08eeff/raw/viking.user.js
// @downloadURL https://gist.github.com/biast12/71772108e2983f4824d7f9cedb08eeff/raw/viking.user.js
// @contributionURL https://www.paypal.com/donate/?hosted_button_id=RWB2QFK7CKUM2
// @license MIT
// @grant GM_addStyle
// @run-at document-start
// @include https://discord.com/*
// @include https://canary.discord.com/*
// @include https://ptb.discord.com/*
// ==/UserScript==
(function() {
let css = `
/* Import the Viking theme */
@import url("https://api.biast12.site/content/css/VikingTheme/index.css");
`;
if (typeof GM_addStyle !== "undefined") {
GM_addStyle(css);
} else {
let styleNode = document.createElement("style");
styleNode.appendChild(document.createTextNode(css));
(document.querySelector("head") || document.documentElement).appendChild(styleNode);
}
})();
@biast12
Copy link
Author

biast12 commented Jul 30, 2023

Viking Discord Theme

Download on browser:

  1. Install a browser extension for managing user scripts (skip if you already have one):

  2. Install The Script

Download on BetterDiscord:

  1. Download BetterDiscord

  2. Download the viking.theme.css file

  3. Move the file to the theme folder

If you have issues or just need help then DM me on Twitter

If you wanna Support me on Paypal or Join my Patreon!

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