Hi!
I'm working on a CSS for a site that features a menu bar. The menu is named 'tabbar.'
.tabbar {
}
The tabbar needs to appear in different colors on different pages. What is the best semantic naming solution for these variants?
I was thinking of using general descriptive terms such as
.tabbar_blue {}
.tabbar_yellow{}
Or should I list the RBG definition/webcolor specifically? Or is there a better way to do this?
Thanks!
Tom Tolleson