Page 1 of 1

Color Info

PostPosted: Fri Feb 27, 2009 7:50 pm
by happypoppeye
Can anyone tell me what the heck this color info is and if it should be used in a CSS. I'm trying to help someone out and have no idea what the "getvar" is.

P,I,H1,H2,H3,H4,H5 {
font-family: #aerial;
font-size: 11pt;
color : <getvar color1>;
background : <getvar color2>;
}

A:link { color : <getvar color3>}
A:active { color : }
A:visited { color : <getvar color3>}
A:hover { color : <getvar color3>}

Thanks,
John

Re: Color Info

PostPosted: Fri Feb 27, 2009 10:38 pm
by dang
Hi John,
In the CSS style sheet page, there's a button toward the right bottom which says "Variablize Colors".
When used, it assigns numbers to a list of colors which vary with each style sheet:

<setvar color1 = #5B5B65>
<setvar color2 = #000000>
<setvar color3 = #232323>
<setvar color4 = #5F79D8>
<setvar color5 = #191919>
<setvar color6 = #2D2D37>
<setvar color7 = #CCCCFF>


This allows seeing the colors via a square (along with the setvar #) in the list, and makes it easier to find & edit in the CSS. If you view the CSS with FF Web Developer, you'll still get standard color numbers instead.

Re: Color Info

PostPosted: Sat Feb 28, 2009 3:40 pm
by happypoppeye
Thanks Dang.

John