feat: colors

This commit is contained in:
cha0s 2020-07-27 22:28:17 -05:00
parent 62895f82a8
commit 9a049c8713
2 changed files with 12 additions and 1 deletions

View File

@ -85,6 +85,17 @@ header {
.chat--messageMarkdown { .chat--messageMarkdown {
display: inline; display: inline;
a {
color: lighten($color-active, 20%);
text-decoration: none;
transition: color 0.2s;
&:visited {
color: lighten($color-active, 5%);
}
&:hover {
color: lighten($color-active, 40%);
}
}
} }
.chat--messageMarkdown :first-child { .chat--messageMarkdown :first-child {

View File

@ -1,4 +1,4 @@
$color-active: rgb(0, 99, 112); $color-active: rgb(0, 99, 112);
$color-muted: #bbbbbb; $color-muted: #bbbbbb;
$color-owner: #d69c30; $color-owner: #d65130;
$color-unread: rgb(180, 0, 0); $color-unread: rgb(180, 0, 0);