@@ -466,13 +466,6 @@ export const style = createTheme({
466466 isFocusVisible : weirdColorToken ( 'negative-background-color-key-focus' ) ,
467467 isPressed : weirdColorToken ( 'negative-background-color-down' )
468468 } ,
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...
476469 'negative-subtle' : colorToken ( 'negative-subtle-background-color-default' ) ,
477470 informative : {
478471 default : weirdColorToken ( 'informative-background-color-default' ) ,
@@ -739,11 +732,13 @@ export const style = createTheme({
739732 boxShadow : {
740733 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' ) } ` ,
741734 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' ) } ` ,
742736 none : 'none'
743737 } ,
744738 filter : {
745739 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' ) } )` ,
746740 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' ) } ` ,
747742 none : 'none'
748743 } ,
749744 borderTopStartRadius : createRenamedProperty ( 'borderStartStartRadius' , radius ) ,
0 commit comments