diff --git a/src/renderer/components/input/index.tsx b/src/renderer/components/input/index.tsx index 5bacca11f..1f46ba79b 100644 --- a/src/renderer/components/input/index.tsx +++ b/src/renderer/components/input/index.tsx @@ -98,6 +98,19 @@ const StyledNumberInput = styled(MantineNumberInput)` `; const StyledPasswordInput = styled(MantinePasswordInput)` + & .mantine-PasswordInput-input { + color: var(--input-fg); + background: var(--input-bg); + + &::placeholder { + color: var(--input-placeholder-fg); + } + } + + & .mantine-PasswordInput-icon { + color: var(--input-placeholder-fg); + } + & .mantine-PasswordInput-required { color: var(--secondary-color); }