mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
14 lines
320 B
TypeScript
14 lines
320 B
TypeScript
|
|
import type { MantineColor } from "@mantine/core";
|
||
|
|
|
||
|
|
import type { ContainerState } from ".";
|
||
|
|
|
||
|
|
export const containerStateColorMap = {
|
||
|
|
created: "cyan",
|
||
|
|
running: "green",
|
||
|
|
paused: "yellow",
|
||
|
|
restarting: "orange",
|
||
|
|
exited: "red",
|
||
|
|
removing: "pink",
|
||
|
|
dead: "dark",
|
||
|
|
} satisfies Record<ContainerState, MantineColor>;
|