@@ -53,7 +53,11 @@ const dropdownContent = {
5353
5454const dropdownItem = {
5555 _highlighted : { bg : 'bg.subtle' } ,
56- _focusVisible : { outline : '2px solid' , outlineColor : 'accent.solid' , outlineOffset : '-2px' } ,
56+ _focusVisible : {
57+ outline : '2px solid' ,
58+ outlineColor : 'accent.solid' ,
59+ outlineOffset : '-2px' ,
60+ } ,
5761} ;
5862
5963const dropdownGroupLabel = {
@@ -223,15 +227,27 @@ export const rowRecipe = defineRecipe({
223227 transition : 'background var(--wb-motion-duration-fast) ease, color var(--wb-motion-duration-fast) ease' ,
224228 w : 'full' ,
225229 _hover : { bg : 'bg.muted' } ,
226- _focusVisible : { outline : '2px solid' , outlineColor : 'accent.solid' , outlineOffset : '-2px' } ,
230+ _focusVisible : {
231+ outline : '2px solid' ,
232+ outlineColor : 'accent.solid' ,
233+ outlineOffset : '-2px' ,
234+ } ,
227235 _disabled : { cursor : 'not-allowed' , opacity : 0.5 } ,
228236 } ,
229237 variants : {
230238 active : {
231239 none : { } ,
232240 muted : { bg : 'bg.muted' } ,
233- brand : { bg : 'brand.subtle' , color : 'brand.fg' , _hover : { bg : 'brand.subtle' } } ,
234- accent : { bg : 'accent.solid' , color : 'accent.contrast' , _hover : { bg : 'accent.solid' } } ,
241+ brand : {
242+ bg : 'brand.subtle' ,
243+ color : 'brand.fg' ,
244+ _hover : { bg : 'brand.subtle' } ,
245+ } ,
246+ accent : {
247+ bg : 'accent.solid' ,
248+ color : 'accent.contrast' ,
249+ _hover : { bg : 'accent.solid' } ,
250+ } ,
235251 } ,
236252 } ,
237253 defaultVariants : { active : 'none' } ,
@@ -270,8 +286,7 @@ export const fieldLabelRecipe = defineRecipe({
270286 color : 'fg.muted' ,
271287 fontSize : '2xs' ,
272288 fontWeight : '600' ,
273- letterSpacing : '0.02em' ,
274- textTransform : 'uppercase' ,
289+ letterSpacing : '0.03em' ,
275290 } ,
276291} ) ;
277292
@@ -295,7 +310,11 @@ export const themeCardRecipe = defineSlotRecipe({
295310 transition :
296311 'border-color var(--wb-motion-duration-fast) ease, background var(--wb-motion-duration-fast) ease, transform var(--wb-motion-duration-fast) ease' ,
297312 _hover : { borderColor : 'border.emphasized' } ,
298- _focusVisible : { outline : '2px solid' , outlineColor : 'accent.solid' , outlineOffset : '2px' } ,
313+ _focusVisible : {
314+ outline : '2px solid' ,
315+ outlineColor : 'accent.solid' ,
316+ outlineOffset : '2px' ,
317+ } ,
299318 } ,
300319 preview : {
301320 borderColor : 'border.subtle' ,
@@ -306,7 +325,12 @@ export const themeCardRecipe = defineSlotRecipe({
306325 overflow : 'hidden' ,
307326 } ,
308327 swatch : { flex : '1' } ,
309- body : { alignItems : 'flex-start' , display : 'flex' , flexDirection : 'column' , gap : '0.5' } ,
328+ body : {
329+ alignItems : 'flex-start' ,
330+ display : 'flex' ,
331+ flexDirection : 'column' ,
332+ gap : '0.5' ,
333+ } ,
310334 name : { color : 'fg' , fontSize : 'sm' , fontWeight : '600' } ,
311335 description : { color : 'fg.subtle' , fontSize : '2xs' , lineHeight : '1.3' } ,
312336 indicator : {
0 commit comments