mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat: Update status and progress colors to match new theme
This commit is contained in:
parent
2250bca8d9
commit
535639cb95
@ -8,7 +8,7 @@ const { defineMultiStyleConfig, definePartsStyle } =
|
|||||||
createMultiStyleConfigHelpers(parts.keys);
|
createMultiStyleConfigHelpers(parts.keys);
|
||||||
|
|
||||||
const invokeAIFilledTrack = defineStyle((_props) => ({
|
const invokeAIFilledTrack = defineStyle((_props) => ({
|
||||||
bg: 'invokeYellow.500',
|
bg: 'blue.500',
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const invokeAITrack = defineStyle((_props) => {
|
const invokeAITrack = defineStyle((_props) => {
|
||||||
|
@ -25,9 +25,9 @@ const statusIndicatorSelector = createMemoizedSelector(
|
|||||||
);
|
);
|
||||||
|
|
||||||
const COLOR_MAP = {
|
const COLOR_MAP = {
|
||||||
ok: 'green.400',
|
ok: 'invokeYellow.500',
|
||||||
working: 'yellow.400',
|
working: 'blue.500',
|
||||||
error: 'red.400',
|
error: 'red.500',
|
||||||
};
|
};
|
||||||
|
|
||||||
const StatusIndicator = () => {
|
const StatusIndicator = () => {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import type { InvokeAIThemeColors } from 'theme/types';
|
import type { InvokeAIThemeColors } from 'theme/types';
|
||||||
import { generateColorPalette } from 'theme/util/generateColorPalette';
|
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 BASE = { H: 220, S: 16 };
|
||||||
const WORKING = { H: 47, S: 42 };
|
const WORKING = { H: 47, S: 42 };
|
||||||
const GOLD = { H: 40, S: 70 };
|
const GOLD = { H: 40, S: 70 };
|
||||||
|
Loading…
Reference in New Issue
Block a user