Tag on light theme

This commit is contained in:
Michael Zhang 2022-02-08 16:34:23 -06:00 committed by Michael Zhang
parent 307ba4e59f
commit fe2c3f2524
2 changed files with 3 additions and 1 deletions

View File

@ -176,7 +176,7 @@ table.table {
.tag {
font-size: 0.9rem;
background-color: darken($link-color, 55%);
background-color: $tag-color;
padding: 2px 7px;
.text {

View File

@ -18,6 +18,7 @@ $monofont: "PragmataPro Mono Liga", "Roboto Mono", "Roboto Mono for Powerline",
$faded: lightgray;
$link-color: royalblue;
$code-color: firebrick;
$tag-color: lighten($link-color, 35%);
@import "content";
}
@ -31,5 +32,6 @@ $monofont: "PragmataPro Mono Liga", "Roboto Mono", "Roboto Mono for Powerline",
$faded: #666;
$link-color: lightskyblue;
$code-color: lighten(firebrick, 25%);
$tag-color: darken($link-color, 55%);
@import "content";
}