Skip to content

Commit

Permalink
fix: add contrast in neutral colors
Browse files Browse the repository at this point in the history
  • Loading branch information
abelflopes committed Nov 24, 2023
1 parent 150d539 commit 2c51fec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/input/src/styles/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
border-radius: get-spacing(1);

&::placeholder {
color: get-color(neutral-300);
color: get-color(neutral-500);
}

&:disabled {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/textarea/src/styles/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
border-radius: get-spacing(1);

&::placeholder {
color: get-color(neutral-300);
color: get-color(neutral-500);
}

&:disabled {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/theme/src/themes/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const defaultTheme: Theme = {
"neutral-0": "#fff",
"neutral-100": "#edf2f7",
"neutral-200": "#DBDEEB",
"neutral-300": "#7c7e88",
"neutral-300": "#a8aab5",
"neutral-500": "#808080",
"neutral-800": "#323646",
"neutral-900": "#1E2232",
Expand Down

0 comments on commit 2c51fec

Please sign in to comment.