From b74480cd37c65319806c11e54b699633f96106ee Mon Sep 17 00:00:00 2001 From: sjaanus Date: Tue, 29 Jul 2025 17:16:47 +0300 Subject: [PATCH] Fix --- .../CreationArchiveChart/flagTypeColors.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 frontend/src/component/insights/componentsChart/CreationArchiveChart/flagTypeColors.ts diff --git a/frontend/src/component/insights/componentsChart/CreationArchiveChart/flagTypeColors.ts b/frontend/src/component/insights/componentsChart/CreationArchiveChart/flagTypeColors.ts new file mode 100644 index 0000000000..5455478703 --- /dev/null +++ b/frontend/src/component/insights/componentsChart/CreationArchiveChart/flagTypeColors.ts @@ -0,0 +1,9 @@ +import type { Theme } from '@mui/material'; + +export const getFlagTypeColors = (theme: Theme) => [ + theme.palette.success.border, + theme.palette.success.main, + theme.palette.success.dark, + '#4D8007', + '#7D935E', +];