QUOTE(ghosting @ Jul 11 2004, 11:43 PM)
QUOTE(Blitze @ Jul 5 2004, 06:25 PM)
DocUK,
Great work on the Carbon 2 skin release!
Your release note message here was also very useful, I learned now how to close Foobar and not the look.
Impressed with the color/hues changing mechanism you added in, although I love the classic Carbon colours - glad you left them in the script, so we can have the cool black look.
I managed to get the overall bar black, but not to get the progress bar crisp like the classic Carbon. A little reading and editing did the trick though.
Well done, sincere thanks.
where did you find the reading material? i would like to know how to get the progress bar as crisp as the classic and also to do a little tweaking of my own
I believe that by "reading", Blitze is referring to the Carbon 2.0 script itself, and perhaps some resources explaining how foo_looks 2.1 scripts are put together.

Anyways, here is how to change to the old-style Carbon colors:
Open up carbon.ski and find the following lines:
CODE
background_color = { r=0, g=28, b=107 }
--background_color = { r=0, g=0, b=0 }
Here you must move the
-- (which changes the line to a comment) up to the above line, as I have done here:
CODE
--background_color = { r=0, g=28, b=107 }
background_color = { r=0, g=0, b=0 }
By doing this, we have changed the default background color from the RGB color value (0,28,107), a blue, to (0,0,0) which is completely black, like the original Carbon.
Now we must change the default progress bar colors. Find the following lines:
CODE
{ sprites=progbars, a=230, r=255, g=255, b=255, side=-1 },
{ sprites=progbars, a=60, r=255, g=255, b=255, side=1 }
--{ sprites=progbars, a=255, r=185, g=223, b=159, side=-1 },
--{ sprites=progbars, a=255, r=95, g=137, b=35, side=1 }
As above, move the -- up to the above lines. This is what the lines should look like afterwards:
CODE
--{ sprites=progbars, a=230, r=255, g=255, b=255, side=-1 },
--{ sprites=progbars, a=60, r=255, g=255, b=255, side=1 }
{ sprites=progbars, a=255, r=185, g=223, b=159, side=-1 },
{ sprites=progbars, a=255, r=95, g=137, b=35, side=1 }
Seemed pretty self-explanatory to a coder

However, I guess it is a good sign that an advanced component such as foo_looks is also used by the general 'public'

Anyways, let me know if you can't get it to work. Enjoy!