feat(ui): tweak link colors

- make the `SDXLConcatLink` icon match existing colors in light mode
- make the link toggle button accent color when active (its not super obvious but at least there is *some* visual difference for the button)
This commit is contained in:
psychedelicious 2023-07-28 19:57:05 +10:00
parent 1df30f7260
commit e4a2f56ad1
2 changed files with 3 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export default function ParamSDXLConcatButton() {
insetInlineEnd: 1,
top: shouldPinParametersPanel ? 12 : 20,
border: 'none',
color: 'base.500',
color: shouldConcatSDXLStylePrompt ? 'accent.500' : 'base.500',
_hover: {
bg: 'none',
},

View File

@ -72,7 +72,8 @@ export default function SDXLConcatLink() {
top: '3px',
p: 1,
borderRadius: 4,
bg: 'accent.200',
bg: 'accent.400',
color: 'base.50',
_dark: {
bg: 'accent.500',
},