KBin.social remove custom styles

Says it right in the title

// ==UserScript==
// @name         KBin.social remove custom styles
// @namespace    https://kbin.social/
// @version      0.3
// @description  Says it right in the title
// @author       H2SO4
// @match        https://kbin.social/*
// @grant        none
// @license        MIT
// ==/UserScript==

(function() {
    'use strict';
    let stylesheet = document.getElementsByTagName("head")[0].getElementsByTagName("style");
    if(stylesheet && stylesheet[0]) {
        stylesheet[0].remove();
    }
})();