Skip to content

Commit

Permalink
Use more muted color icon for stopped torrents
Browse files Browse the repository at this point in the history
  • Loading branch information
qu1ck committed Oct 20, 2023
1 parent 56de051 commit 94a0b7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/statusicons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function Inactive() {

export function Stopped() {
const theme = useMantineTheme();
return <Icon.PauseBtnFill size="1rem" fill={theme.colors.yellow[5]} />;
return <Icon.PauseBtnFill size="1rem" fill={theme.colors.yellow[6]} />;
}

export function Error() {
Expand Down Expand Up @@ -78,7 +78,7 @@ export function Magnetizing() {

export function CompletedStopped() {
const theme = useMantineTheme();
return <Icon.CheckSquareFill size="1rem" fill={theme.colors.green[7]} />;
return <Icon.CheckSquareFill size="1rem" fill={theme.colors.green[9]} />;
}

export const StatusIconMap: Record<number, React.FC> = {
Expand Down

0 comments on commit 94a0b7c

Please sign in to comment.