@@ -466,13 +466,6 @@ export const style = createTheme({
466
466
isFocusVisible : weirdColorToken ( 'negative-background-color-key-focus' ) ,
467
467
isPressed : weirdColorToken ( 'negative-background-color-down' )
468
468
} ,
469
- 'negative-subdued' : {
470
- default : colorToken ( 'negative-subdued-background-color-default' ) ,
471
- isHovered : colorToken ( 'negative-subdued-background-color-hover' ) ,
472
- isFocusVisible : colorToken ( 'negative-subdued-background-color-key-focus' ) ,
473
- isPressed : colorToken ( 'negative-subdued-background-color-down' )
474
- } ,
475
- // Sort of weird to have both subdued and subtle that map to the same color...
476
469
'negative-subtle' : colorToken ( 'negative-subtle-background-color-default' ) ,
477
470
informative : {
478
471
default : weirdColorToken ( 'informative-background-color-default' ) ,
@@ -739,11 +732,13 @@ export const style = createTheme({
739
732
boxShadow : {
740
733
emphasized : `${ getToken ( 'drop-shadow-emphasized-default-x' ) } ${ getToken ( 'drop-shadow-emphasized-default-y' ) } ${ getToken ( 'drop-shadow-emphasized-default-blur' ) } ${ colorToken ( 'drop-shadow-emphasized-default-color' ) } ` ,
741
734
elevated : `${ getToken ( 'drop-shadow-elevated-x' ) } ${ getToken ( 'drop-shadow-elevated-y' ) } ${ getToken ( 'drop-shadow-elevated-blur' ) } ${ colorToken ( 'drop-shadow-elevated-color' ) } ` ,
735
+ dragged : `${ getToken ( 'drop-shadow-dragged-x' ) } ${ getToken ( 'drop-shadow-dragged-y' ) } ${ getToken ( 'drop-shadow-dragged-blur' ) } ${ colorToken ( 'drop-shadow-dragged-color' ) } ` ,
742
736
none : 'none'
743
737
} ,
744
738
filter : {
745
739
emphasized : `drop-shadow(${ getToken ( 'drop-shadow-emphasized-default-x' ) } ${ getToken ( 'drop-shadow-emphasized-default-y' ) } ${ getToken ( 'drop-shadow-emphasized-default-blur' ) } ${ colorToken ( 'drop-shadow-emphasized-default-color' ) } )` ,
746
740
elevated : `drop-shadow(${ getToken ( 'drop-shadow-elevated-x' ) } ${ getToken ( 'drop-shadow-elevated-y' ) } ${ getToken ( 'drop-shadow-elevated-blur' ) } ${ colorToken ( 'drop-shadow-elevated-color' ) } )` ,
741
+ dragged : `drop-shadow${ getToken ( 'drop-shadow-dragged-x' ) } ${ getToken ( 'drop-shadow-dragged-y' ) } ${ getToken ( 'drop-shadow-dragged-blur' ) } ${ colorToken ( 'drop-shadow-dragged-color' ) } ` ,
747
742
none : 'none'
748
743
} ,
749
744
borderTopStartRadius : createRenamedProperty ( 'borderStartStartRadius' , radius ) ,
0 commit comments