diff --git a/frontend/src/GlobalStyle.tsx b/frontend/src/GlobalStyle.tsx index 5faa8b506..d3327043f 100644 --- a/frontend/src/GlobalStyle.tsx +++ b/frontend/src/GlobalStyle.tsx @@ -120,5 +120,12 @@ const GLOBAL_STYLE = css({ borderTop: `1px solid ${COLORS.neutral25}`, }, "p, label": { color: COLORS.neutral80 }, - input: { color: COLORS.neutral90 }, + "input, textarea": { + backgroundColor: COLORS.neutral05, + color: COLORS.neutral90, + ":disabled": { + backgroundColor: COLORS.neutral10, + color: COLORS.neutral70, + }, + }, });