feat: Update status and progress colors to match new theme

This commit is contained in:
blessedcoolant 2024-01-04 00:40:43 +05:30 committed by Kent Keirsey
parent 2250bca8d9
commit 535639cb95
3 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ const { defineMultiStyleConfig, definePartsStyle } =
createMultiStyleConfigHelpers(parts.keys);
const invokeAIFilledTrack = defineStyle((_props) => ({
bg: 'invokeYellow.500',
bg: 'blue.500',
}));
const invokeAITrack = defineStyle((_props) => {

View File

@ -25,9 +25,9 @@ const statusIndicatorSelector = createMemoizedSelector(
);
const COLOR_MAP = {
ok: 'green.400',
working: 'yellow.400',
error: 'red.400',
ok: 'invokeYellow.500',
working: 'blue.500',
error: 'red.500',
};
const StatusIndicator = () => {

View File

@ -1,7 +1,7 @@
import type { InvokeAIThemeColors } from 'theme/types';
import { generateColorPalette } from 'theme/util/generateColorPalette';
const BASE = { H: 220, S: 8 };
const BASE = { H: 220, S: 14 };
// const BASE = { H: 220, S: 16 };
const WORKING = { H: 47, S: 42 };
const GOLD = { H: 40, S: 70 };