Exactly, but in RGB color values.
It can be more simple though, you could just use something like:
Code:scrollbar-face-color: red;
There are several ways to specify a color. . .all of the following would give you the same red:
color: red; //(Nice & easy)
color: rgb(255,0,0); //(Using RGB (red green blue) values)
color: #FF0000; //(Using hexadecimal RGB values)