How to change css color scheme by applying hue change co all colors in css file How to change css color scheme by applying hue change co all colors in css file shell shell

How to change css color scheme by applying hue change co all colors in css file


LESS.css

It adds a number of convenience methods to CSS, including hex/rgba arithmetic, and will compile to 'native' CSS with the command line utility, which you will find intuitive.

spin(#BEFBA, 10);   // return a color with a 10 degree larger in hue than #BEFBA@color: #BEFBA;     // just a variablespin(@color, -10);  // return a color with a 10 degree smaller in hue than @color// applied to css class:.myStyle{    background-color: spin( @color, 10 );  }