Darken input bg on light mode and dark mode.

This commit is contained in:
Arne Pedersen
2022-12-29 00:22:41 +01:00
parent c65857979f
commit 69822f45f1

View File

@@ -15,7 +15,7 @@ export const Input = forwardRef(
return (
<div className={className}>
<input
className="bg-custom-green-dark border-2 border-custom-black rounded w-full p-3"
className="bg-gray-100 dark:bg-gray-800 border-2 border-custom-black rounded w-full p-3"
ref={ref}
value={value}
onChange={onChange}