css: factor out colors from main css (#4158).

This commit is contained in:
evazion
2019-09-17 00:28:41 -05:00
parent d203a543d0
commit c325bfa199
52 changed files with 519 additions and 332 deletions

View File

@@ -1,27 +1,23 @@
a.user-admin.with-style {
color: red;
color: var(--user-admin-color);
}
a.user-moderator.with-style {
color: orange;
}
a.user-contributor.with-style {
color: purple;
color: var(--user-moderator-color);
}
a.user-builder.with-style {
color: #6633FF;
color: var(--user-builder-color);
}
a.user-platinum.with-style {
color: gray;
color: var(--user-platinum-color);
}
a.user-gold.with-style {
color: #0000FF;
color: var(--user-gold-color);
}
a.user-member.with-style {
color: auto;
color: var(--user-member-color);
}