feat: Make the in progress dark mode colors golden

This commit is contained in:
blessedcoolant 2023-08-23 21:18:22 +12:00 committed by psychedelicious
parent 0cb886b915
commit ca3e826a14
2 changed files with 7 additions and 3 deletions

View File

@ -77,7 +77,11 @@ const NodeWrapper = (props: NodeWrapperProps) => {
w: width ?? NODE_WIDTH,
transitionProperty: 'common',
transitionDuration: '0.1s',
shadow: selected ? selectedShadow : undefined,
shadow: selected
? isInProgress
? undefined
: selectedShadow
: undefined,
cursor: 'grab',
opacity,
}}

View File

@ -113,8 +113,8 @@ export const theme: ThemeOverride = {
},
nodeInProgress: {
light:
'0 0 4px 2px var(--invokeai-colors-accent-500), 0 0 15px 4px var(--invokeai-colors-accent-600)',
dark: '0 0 4px 2px var(--invokeai-colors-accent-400), 0 0 15px 4px var(--invokeai-colors-accent-400)',
'0 0 0 2px var(--invokeai-colors-accent-500), 0 0 10px 2px var(--invokeai-colors-accent-600)',
dark: '0 0 0 2px var(--invokeai-colors-yellow-400), 0 0 20px 2px var(--invokeai-colors-orange-700)',
},
},
colors: InvokeAIColors,