Skip to content

Commit

Permalink
Abstract font colors
Browse files Browse the repository at this point in the history
  • Loading branch information
iurevych committed May 13, 2011
1 parent d2eb702 commit 91053f5
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions core/color/colors.css
@@ -0,0 +1,40 @@
/* Font colors should be as abstract as possible.
* This allows us using any skins we like without modifying classes
* Use .firm class for unique color of the project (like orange in my example)
* Use .positive, .negative to style only relative information (like system messages or feedback, etc)
*/
.bare {
color: #bbb;
}

.pale {
color: #999;
}

.neutral {
color: #666;
}

.opaque {
color: #333;
}

.sharp {
color: #000;
}

.contrast {
color: #fff;
}

.firm {
color: #fc6c06;
}

.positive {
color: #73ab00;
}

.negative {
color: #c20000;
}

0 comments on commit 91053f5

Please sign in to comment.