mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-07 19:25:14 -05:00
feat(ui): brighter border around fill color buttons
This commit is contained in:
@@ -50,7 +50,14 @@ export const EntityListSelectedEntityActionBarFill = memo(() => {
|
||||
<Flex role="button" aria-label={t('controlLayers.maskFill')} tabIndex={-1} w={8} h={8}>
|
||||
<Tooltip label={t('controlLayers.maskFill')}>
|
||||
<Flex w="full" h="full" alignItems="center" justifyContent="center">
|
||||
<Box borderRadius="full" w={6} h={6} borderWidth={1} bg={rgbColorToString(fill.color)} />
|
||||
<Box
|
||||
borderRadius="full"
|
||||
borderColor="base.300"
|
||||
w={6}
|
||||
h={6}
|
||||
borderWidth={1}
|
||||
bg={rgbColorToString(fill.color)}
|
||||
/>
|
||||
</Flex>
|
||||
</Tooltip>
|
||||
</Flex>
|
||||
|
||||
@@ -26,7 +26,14 @@ export const ToolColorPicker = memo(() => {
|
||||
<Flex role="button" aria-label={t('controlLayers.fill.fillColor')} tabIndex={-1} w={8} h={8}>
|
||||
<Tooltip label={t('controlLayers.fill.fillColor')}>
|
||||
<Flex w="full" h="full" alignItems="center" justifyContent="center">
|
||||
<Box borderRadius="full" w={6} h={6} borderWidth={1} bg={rgbaColorToString(fill)} />
|
||||
<Box
|
||||
borderRadius="full"
|
||||
borderColor="base.300"
|
||||
w={6}
|
||||
h={6}
|
||||
borderWidth={1}
|
||||
bg={rgbaColorToString(fill)}
|
||||
/>
|
||||
</Flex>
|
||||
</Tooltip>
|
||||
</Flex>
|
||||
|
||||
Reference in New Issue
Block a user