Skip to content

Commit d79fbfc

Browse files
committed
revert color tokens
1 parent 688418c commit d79fbfc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Button/styles.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
102102
},
103103
},
104104
invisible: {
105-
color: 'btn.text',
105+
color: 'accent.fg',
106106
backgroundColor: 'transparent',
107107
borderColor: 'transparent',
108108
boxShadow: 'none',
109109
'&:hover:not([disabled])': {
110-
backgroundColor: 'actionListItem.default.hoverBg',
110+
backgroundColor: 'btn.hoverBg',
111111
},
112112
'&:active:not([disabled])': {
113-
backgroundColor: 'actionListItem.default.activeBg',
113+
backgroundColor: 'btn.selectedBg',
114114
},
115115
'&:disabled': {
116116
color: 'primer.fg.disabled',
@@ -119,7 +119,7 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
119119
},
120120
},
121121
'&[aria-expanded=true]': {
122-
backgroundColor: 'actionListItem.default.selectedBg',
122+
backgroundColor: 'btn.selectedBg',
123123
},
124124
svg: {
125125
color: 'fg.muted',
@@ -128,7 +128,7 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
128128
color: 'accent.fg',
129129
},
130130
'&:has([data-component="ButtonCounter"])': {
131-
color: 'btn.text',
131+
color: 'accent.fg',
132132
},
133133
},
134134
outline: {

0 commit comments

Comments
 (0)