Skip to content

Commit

Permalink
chore(react): update colors for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
brionmario committed Oct 21, 2024
1 parent 0f69b3b commit 59f82e6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/react/src/components/TextField/text-field.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
*/

:root {
--oxygen-palette-ReadOnlyInput-bg: #e9ecef;
--oxygen-palette-ReadOnlyInput-bg: var(--oxygen-palette-grey-200);
}

:root[data-mui-color-scheme="dark"] {
--oxygen-palette-ReadOnlyInput-bg: var(--oxygen-palette-grey-900);
}

.OxygenTextField-root {
Expand Down

0 comments on commit 59f82e6

Please sign in to comment.