Skip to content

Commit 46deb6a

Browse files
committed
Change text input color to white
1 parent 39dfaa2 commit 46deb6a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

front/src/components/ui/password-input.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ export const PasswordInput = React.forwardRef<
4040
defaultVisible,
4141
visible: visibleProp,
4242
onVisibleChange,
43-
visibilityIcon = { on: <LuEye />, off: <LuEyeOff /> },
43+
visibilityIcon = {
44+
on: <LuEye />,
45+
off: <LuEyeOff />,
46+
},
4447
...rest
4548
} = props;
4649

front/src/theme/theme.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ const customConfig = defineConfig({
2222
color: 'fg.muted',
2323
},
2424
},
25+
input: {
26+
base: {
27+
color: 'fg',
28+
},
29+
},
2530
},
2631
tokens: {
2732
fonts: {

0 commit comments

Comments
 (0)