diff --git a/components/Input/index.tsx b/components/Input/index.tsx
index ed3eade3..63eb6798 100644
--- a/components/Input/index.tsx
+++ b/components/Input/index.tsx
@@ -24,14 +24,6 @@ export function InputBase({
let textColor = `text-${fgColor}`;
let backColor = `bg-${bgColor}`;
- if (enabled === false) {
- textColor = "text-gray-500";
- backColor = "bg-gray-100";
- } else if (enabled === true) {
- textColor = `bg-${fgColor}`;
- backColor = `bg-${bgColor}`;
- }
-
return (
@@ -135,7 +145,7 @@ function Profile() {
id="name"
name="name"
value={user.name || ""}
- bgColor="white"
+ bgColor="primary"
fgColor="white"
enabled={false}
/>
@@ -144,11 +154,24 @@ function Profile() {
id="username"
name="username"
value={username}
- bgColor="white"
+ bgColor="primary"
fgColor="white"
enabled={editing}
onChange={(e) => setUsername(e.currentTarget.value)}
/>
+