mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat: Make the in progress dark mode colors golden
This commit is contained in:
parent
0cb886b915
commit
ca3e826a14
@ -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,
|
||||
}}
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user