@font-face to define style in css
// color
color: rgb(100%,100%,100%);
color: rgb(255,255,255);
color: rgba(255, 100, 50, .5); // last param is transperency, from 0 to 1
// for Internet Explorer 8
color: rgb(255,100,50); /* Для IE8 */
color: rgba(255,100,50,.5); /* Для более современных браузеров */