leyang / Chrome Newtab Aqua Neon Theme

// ==UserScript==
// @name         Chrome Newtab Aqua Neon Theme
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  An aqua neon theme for chrome newtab page
// @author       XenRon
// @include      *://*/_/chrome/newtab*
// @grant        none
// @updateURL    https://openuserjs.org/meta/leyang/Chrome_Newtab_Aqua_Neon_Theme.meta.js
// ==/UserScript==


function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('#fkbx {border: 1px solid rgba(0, 255, 255, 1) !important; border-top-color: rgba(0, 255, 255, 1) !important; background: black !important;}');
addGlobalStyle('#fkbx-text {background: black !important; color: #00ffff;}');
addGlobalStyle('#fkbx_crt {background: #00ffff !important;}');
addGlobalStyle('#fkbx:hover {border: 1px solid #00bdbd !important; border-top-color: #00bdbd !important;}');
addGlobalStyle('.thumb-ntp .mv-tile, .thumb-ntp .mv-empty-tile {background: #333333 !important;}');
addGlobalStyle('.thumb-ntp .mv-x {background: linear-gradient(to left, rgb(0, 0, 0) 60%, transparent) !important;}');
addGlobalStyle('.thumb-ntp .mv-x:hover::after {background-color: #00ffff !important;}');
addGlobalStyle('#gb#gb.gb_X a.gb_P, #gb#gb.gb_X span.gb_P, #gb#gb .gb_X a.gb_P, #gb#gb .gb_X span.gb_P {color: #00ffff !important;}');
addGlobalStyle('img#hplogo {height:100 !important; width:auto !important;}');
document.getElementById("hplogo").src="https://fat.gfycat.com/MemorableUnluckyEasteuropeanshepherd.gif";
addGlobalStyle('#ctDoodleNotifier {left:inherit !important; right:100px; !important}');