mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): restore prev colors for workflow editor
Brand colors are now prefixed with "invoke".
This commit is contained in:
committed by
Kent Keirsey
parent
d8d266d3be
commit
1a710a4c12
@ -142,7 +142,7 @@ const IAICanvasStagingAreaToolbar = () => {
|
||||
aria-label={`${t('unifiedCanvas.previous')} (Left)`}
|
||||
icon={<FaArrowLeft />}
|
||||
onClick={handlePrevImage}
|
||||
colorScheme="blue"
|
||||
colorScheme="invokeBlue"
|
||||
isDisabled={!shouldShowStagingImage}
|
||||
/>
|
||||
<InvButton
|
||||
@ -156,7 +156,7 @@ const IAICanvasStagingAreaToolbar = () => {
|
||||
aria-label={`${t('unifiedCanvas.next')} (Right)`}
|
||||
icon={<FaArrowRight />}
|
||||
onClick={handleNextImage}
|
||||
colorScheme="blue"
|
||||
colorScheme="invokeBlue"
|
||||
isDisabled={!shouldShowStagingImage}
|
||||
/>
|
||||
</InvButtonGroup>
|
||||
@ -166,7 +166,7 @@ const IAICanvasStagingAreaToolbar = () => {
|
||||
aria-label={`${t('unifiedCanvas.accept')} (Enter)`}
|
||||
icon={<FaCheck />}
|
||||
onClick={handleAccept}
|
||||
colorScheme="blue"
|
||||
colorScheme="invokeBlue"
|
||||
/>
|
||||
<InvIconButton
|
||||
tooltip={
|
||||
@ -182,7 +182,7 @@ const IAICanvasStagingAreaToolbar = () => {
|
||||
data-alert={!shouldShowStagingImage}
|
||||
icon={shouldShowStagingImage ? <FaEye /> : <FaEyeSlash />}
|
||||
onClick={handleToggleShouldShowStagingImage}
|
||||
colorScheme="blue"
|
||||
colorScheme="invokeBlue"
|
||||
/>
|
||||
<InvIconButton
|
||||
tooltip={t('unifiedCanvas.saveToGallery')}
|
||||
@ -190,7 +190,7 @@ const IAICanvasStagingAreaToolbar = () => {
|
||||
isDisabled={!imageDTO || !imageDTO.is_intermediate}
|
||||
icon={<FaSave />}
|
||||
onClick={handleSaveToGallery}
|
||||
colorScheme="blue"
|
||||
colorScheme="invokeBlue"
|
||||
/>
|
||||
<InvIconButton
|
||||
tooltip={t('unifiedCanvas.discardAll')}
|
||||
|
Reference in New Issue
Block a user