Stars are now yellow instead of depressing grey

This commit is contained in:
Tom Moor
2022-02-17 21:39:58 -08:00
parent e109d5629f
commit ab573ba02c
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ function Star({ size, document, ...rest }: Props) {
{...rest}
>
{document.isStarred ? (
<AnimatedStar size={size} color={theme.textSecondary} />
<AnimatedStar size={size} color={theme.yellow} />
) : (
<AnimatedStar
size={size}

View File

@@ -21,7 +21,7 @@ const colors = {
black10: "rgba(0, 0, 0, 0.1)",
black50: "rgba(0, 0, 0, 0.50)",
primary: "#0366d6",
yellow: "#FBCA04",
yellow: "#EDBA07",
warmGrey: "#EDF2F7",
searchHighlight: "#FDEA9B",
danger: "#ff476f",