Skip to content

Commit 94a0b7c

Browse files
committed
Use more muted color icon for stopped torrents
1 parent 56de051 commit 94a0b7c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/statusicons.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export function Inactive() {
4848

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

5454
export function Error() {
@@ -78,7 +78,7 @@ export function Magnetizing() {
7878

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

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

0 commit comments

Comments
 (0)