mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-10 08:36:58 +01:00
Co-authored-by: Crowdin Homarr <190541745+homarr-crowdin[bot]@users.noreply.github.com> Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com> Co-authored-by: homarr-crowdin[bot] <190541745+homarr-crowdin[bot]@users.noreply.github.com> Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
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>;
|