// ==UserScript== // @name tumblr optica restyle // @namespace https://greasyfork.org/en/users/36620 // @version 0.2 // @description for tumblrs with the optica theme, move header to side and automatically display post notes // @author scriptfairy // @include /https?:\/\/(?!www).+\.tumblr\.com.*/ // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js // @run-at document-body // @downloadURL none // ==/UserScript== (function($) { if ($('a[href$="optica"]').length > 0) { var themeBackground = $('body').css('background-color'); themeBackground = themeBackground.slice(themeBackground.indexOf('(')+1,themeBackground.indexOf(')')); var themeSplit = themeBackground.split(','); var r, g, b, searchColor; r = themeSplit[0] < 128 ? 255 : 0; g = themeSplit[1] < 128 ? 255 : 0; b = themeSplit[2] < 128 ? 255 : 0; searchColor = 'rgb('+r+','+g+','+b+')'; console.log(searchColor); $('