Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/tokens/src/color/darkModeColors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ const darkModeTextColors = {
[InteractionState.Focus]: blue.light3,
},
[Variant.Placeholder]: {
[InteractionState.Default]: gray.dark1,
[InteractionState.Hover]: gray.dark1,
[InteractionState.Focus]: gray.dark1,
[InteractionState.Default]: gray.light1,
[InteractionState.Hover]: gray.light1,
[InteractionState.Focus]: gray.light1,
},
[Variant.Secondary]: {
[InteractionState.Default]: gray.light1,
Expand Down
6 changes: 3 additions & 3 deletions packages/tokens/src/color/lightModeColors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ const lightModeTextColors = {
[InteractionState.Focus]: red.base,
},
[Variant.Placeholder]: {
[InteractionState.Default]: gray.base,
[InteractionState.Hover]: gray.base,
[InteractionState.Focus]: gray.base,
[InteractionState.Default]: gray.dark1,
[InteractionState.Hover]: gray.dark1,
[InteractionState.Focus]: gray.dark1,
Comment thread
adamrasheed marked this conversation as resolved.
},
[Variant.OnSuccess]: {
[InteractionState.Default]: green.dark2,
Expand Down
Loading