kbin.social make upvote blue (down is red) for colorblind accessibility

kbin.social make upvote blue (down is red) - for colorblind accessibility

// ==UserScript==
// @name        kbin.social make upvote blue (down is red) for colorblind accessibility 
// @namespace   english
// @description  kbin.social make upvote blue (down is red) - for colorblind accessibility 

// @version     1.2
// @run-at document-end

// @license MIT
// @grant       GM_addStyle
// @include     http*://*kbin.social*
// ==/UserScript==
 
 
 
//css color edit 
 
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML =   '       html .vote .active.vote__up button {  color: #1b6aff  !important ;}        ' ;
 
document.getElementsByTagName('head')[0].appendChild(style);