White, black, and grayscale variables for easier color manipulation while you design in the browser.
Use any variable from @white1
to @white99
, the lower the number, the more transparent the color.
Black and white work the same way. The higher the suffix number, the more solid (i.e. not transparent) the color will be.
// syntax: @white##
// @black##
@white: #fff;
@white1: fade(@white, 1%);
@white2: fade(@white, 2%);
@white3: fade(@white, 3%);
@white4: fade(@white, 4%);
...
@white96: fade(@white, 96%);
@white97: fade(@white, 97%);
@white98: fade(@white, 98%);
@white99: fade(@white, 99%);
Grayscale colors are solid, as in they have no transparency. I found these to be useful sometimes when I didn't want the background-color
to bleed through. @gray99
is closest to white, while @gray1
is closest to black.
// syntax: @gray##
@black: #000;
@white: #fff;
@gray99: mix(@black, @white, 1%);
@gray98: mix(@black, @white, 2%);
@gray97: mix(@black, @white, 3%);
@gray96: mix(@black, @white, 4%);
...
@gray4: mix(@black, @white, 96%);
@gray3: mix(@black, @white, 97%);
@gray2: mix(@black, @white, 98%);
@gray1: mix(@black, @white, 99%);
Try using these variables to:
- setting the background-color a little lighter or darker;
- make an
<hr />
with a light top border and a dark bottom border; the horizontal rules on this page were made with these variables; - mix colors like this:
mix(@color, @white50, 50)
which provides an additional point of adjustment. Hey don't knock it 'til you've tried it—it's helped me.
TextExpander is an amazing piece of software. I was using a snippet in #!/bin/sh
mode to generate lists really quickly. I needed to create lists super fast and a shell script was just the way to do it. Anyhow, I edited that shell script to work with these color variables. And voila, incremented numbers from 1–99. Here's that shell script, in you're interested.
#!/bin/sh
numberA=0
numberB=%fill:numbers%
until [ $numberA == %fill:numbers% ]; do
echo "@black$numberB: fadeout(@black, $numberA%);"
numberA=$((numberA + 1))
numberB=$((numberB - 1))
done
And again, but without those TextExpander placeholder variables:
#!/bin/sh
numberA=0
numberB=10 # has to match the until == 10
until [ $numberA == 10 ]; do
echo "@black$numberB: fadeout(@black, $numberA%);"
numberA=$((numberA + 1))
numberB=$((numberB - 1))
done
I've included the snippet in the folder /assets/ in this project.
Thanks to LessCSS I can do my color exploration in the browser, instead of the Photoshop color palette. Sure, I could be using hsla(0,0,0,0.5)
, but that's a lot more characters and shift key usage than just typing in @black50
and being done with it.
Are there better ways to do this? Probably. If it was designed by a human then its fallible, and there is always a better way to do it.
--
Jason Robb © 2012.