Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed highlight token color #17430

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions packages/themes/src/g100.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
blue40,
blue60,
blue70,
blue80,
blue90,

// Gray
gray10,
Expand Down Expand Up @@ -204,7 +204,7 @@ export const skeletonElement = gray80;

// Misc
export const interactive = blue50;
export const highlight = blue80;
export const highlight = blue90;
export const overlay = rgba(black, 0.65);
export const toggleOff = gray60;
export const shadow = rgba(black, 0.8);
Expand Down
3 changes: 2 additions & 1 deletion packages/themes/src/g90.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
blue40,
blue60,
blue70,
blue80,

// Gray
gray10,
Expand Down Expand Up @@ -204,7 +205,7 @@ export const skeletonElement = gray70;

// Misc
export const interactive = blue50;
export const highlight = blue70;
export const highlight = blue80;
export const overlay = rgba(black, 0.65);
export const toggleOff = gray50;
export const shadow = rgba(black, 0.8);
Expand Down
Loading