Index: static/scss/_utilities.scss |
=================================================================== |
--- a/static/scss/_utilities.scss |
+++ b/static/scss/_utilities.scss |
@@ -61,8 +61,35 @@ |
display: table; |
content: " "; |
} |
.clearfix:after |
{ |
clear: both; |
} |
+ |
+/* Backgrounds |
+ ******************************************************************************/ |
+ |
+.bg-primary |
+{ |
+ color: $primary-light; |
+ background-color: $primary-dark; |
+} |
+ |
+.bg-secondary |
+{ |
+ color: $secondary-light; |
+ background-color: $secondary-dark; |
+} |
+ |
+.bg-accent |
+{ |
+ color: $accent-light; |
+ background-color: $accent-dark; |
+} |
+ |
+.bg-error |
+{ |
+ color: $error-light; |
+ background-color: $error-dark; |
+} |