Skip to content

Commit 869e0cb

Browse files
committed
Fix color var key
- Remove white css var
1 parent 548011c commit 869e0cb

File tree

1 file changed

+3
-3
lines changed
  • packages/components/src/components/Select

1 file changed

+3
-3
lines changed

packages/components/src/components/Select/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ interface SelectProps extends ComponentProps<'div'> {
4949
colors?: {
5050
primary?: string
5151
border?: string
52-
inputBg?: string
52+
inputBackground?: string
5353
base10?: string
5454
title?: string
5555
selectDisabled?: string
@@ -135,7 +135,7 @@ export function Select({
135135
styleVars={{
136136
primary: colors?.primary,
137137
border: colors?.border,
138-
inputBg: colors?.inputBg,
138+
inputBackground: colors?.inputBackground,
139139
base10: colors?.base10,
140140
title: colors?.title,
141141
selectDisabled: colors?.selectDisabled,
@@ -238,7 +238,7 @@ export function SelectContainer({
238238
w: 'fit-content',
239239
px: '30px',
240240
py: '10px',
241-
color: 'var(--white, light-dark(#FFF,#FFF))',
241+
color: '#FFF',
242242
typography: 'buttonS',
243243
})}
244244
onClick={() => setOpen(false)}

0 commit comments

Comments
 (0)