@mgoodfellow/park-ui-panda-preset
Version:
Panda CSS Preset for Park UI
90 lines (88 loc) • 2 kB
text/typescript
import { colorPickerAnatomy } from '@ark-ui/anatomy'
import { defineSlotRecipe } from '@pandacss/dev'
export const colorPicker = defineSlotRecipe({
className: 'colorPicker',
slots: colorPickerAnatomy.keys(),
base: {
root: {
display: 'flex',
flexDirection: 'column',
gap: '1.5',
},
label: {
color: 'fg.default',
fontWeight: 'medium',
textStyle: 'sm',
},
control: {
display: 'flex',
flexDirection: 'row',
gap: '2',
},
content: {
background: 'bg.default',
borderRadius: 'l3',
boxShadow: 'lg',
display: 'flex',
flexDirection: 'column',
maxWidth: 'sm',
p: '4',
zIndex: 'dropdown',
_open: {
animation: 'fadeIn 0.25s ease-out',
},
_closed: {
animation: 'fadeOut 0.2s ease-out',
},
_hidden: {
display: 'none',
},
},
area: {
height: '36',
borderRadius: 'l2',
overflow: 'hidden',
},
areaThumb: {
borderRadius: 'full',
height: '2.5',
width: '2.5',
boxShadow: 'white 0px 0px 0px 2px, black 0px 0px 2px 1px',
outline: 'none',
},
areaBackground: {
height: 'full',
},
channelSlider: {
borderRadius: 'l2',
},
channelSliderTrack: {
height: '3',
borderRadius: 'l2',
},
swatchGroup: {
display: 'grid',
gridTemplateColumns: 'repeat(7, 1fr)',
gap: '2',
background: 'bg.default',
},
swatch: {
height: '6',
width: '6',
borderRadius: 'l2',
boxShadow:
'0 0 0 1px var(--colors-border-emphasized), 0 0 0 2px var(--colors-bg-default) inset',
},
channelSliderThumb: {
borderRadius: 'full',
height: '2.5',
width: '2.5',
boxShadow: 'white 0px 0px 0px 2px, black 0px 0px 2px 1px',
transform: 'translate(-50%, -50%)',
outline: 'none',
},
transparencyGrid: {
borderRadius: 'l2',
},
},
})