Skip to content

Commit

Permalink
fix(ui): incorrect colors for the tags and tips
Browse files Browse the repository at this point in the history
  • Loading branch information
xyhp915 committed Jan 31, 2024
1 parent f6c8698 commit 06c63cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/frontend/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ a.tag {
cursor: pointer;
padding: 0 2px;
border-radius: 4px;
color: or(--ls-tag-text, --lx-accent-11, --ls-tag-text-color, #045591);
color: var(--lx-accent-11, var(--ls-tag-text-color, hsl(var(--primary))));
opacity: var(--ls-tag-text-opacity, 0.7);
}

Expand All @@ -499,11 +499,11 @@ a.tag:hover {
}

svg.note {
color: var(--ls-primary-text-color, #19407c);
color: var(--rx-yellow-08);
}

svg.tip {
color: var(--ls-active-primary-color);
color: var(--lx-accent-08, var(--rx-blue-08));
}

/* endregion */
Expand Down

0 comments on commit 06c63cf

Please sign in to comment.