From 91053f51096903d4419564c887ab51e8c62b7180 Mon Sep 17 00:00:00 2001 From: iurevych Date: Fri, 13 May 2011 09:23:28 +0300 Subject: [PATCH] Abstract font colors --- core/color/colors.css | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 core/color/colors.css diff --git a/core/color/colors.css b/core/color/colors.css new file mode 100644 index 00000000..5c075daf --- /dev/null +++ b/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; +}