(adsbygoogle = window.adsbygoogle || []).push({});
I know some of you may find this pointless, but I find it quite useful + It's less functions.
colorRGB( Elem, RGB )
{
Elem.color = RGB;
}
I know you can just go "self.scrollbar.color = (1,1,0);" etc. but in this case you can thread it from one function instead of making constant ones for each color.
Thread it like this colorRBG( self.scrollbar, (0,0,1) );
Hope some people find this helpful