diff --git a/src/renderer/components/input/index.tsx b/src/renderer/components/input/index.tsx index 079ca099b..5bacca11f 100644 --- a/src/renderer/components/input/index.tsx +++ b/src/renderer/components/input/index.tsx @@ -112,6 +112,19 @@ const StyledPasswordInput = styled(MantinePasswordInput)` `; const StyledFileInput = styled(MantineFileInput)` + & .mantine-FileInput-input { + color: var(--input-fg); + background: var(--input-bg); + + &::placeholder { + color: var(--input-placeholder-fg); + } + } + + & .mantine-FileInput-icon { + color: var(--input-placeholder-fg); + } + & .mantine-FileInput-required { color: var(--secondary-color); }