Skip to content

Commit

Permalink
Merge pull request #13453 from TylerAPfledderer/fix/global-css-var-an…
Browse files Browse the repository at this point in the history
…notations

[Tailwind] fix(global.css): update variable annotations
  • Loading branch information
pettinarip authored Jul 23, 2024
2 parents 68e2f91 + 5c16a02 commit 0d7fc59
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@
--primary-hover: var(--blue-400);
--primary-visited: var(--blue-700);
/* ! Deprecating primary-light */
--primary-light: var(--blue.100);
--primary-light: var(--blue-100);
/* ! Deprecating primary-dark */
--primary-dark: var(--blue.700);
--primary-dark: var(--blue-700);
/* ! Deprecating primary-pressed */
--primary-pressed: var(--blue.400);
--primary-pressed: var(--blue-400);

--body: var(--gray-800);
--body-medium: var(--gray-500);
Expand Down Expand Up @@ -125,11 +125,11 @@
--primary-hover: var(--orange-400);
--primary-visited: var(--orange-550);
/* ! Deprecating primary-light */
--primary-light: var(--orange.100);
--primary-light: var(--orange-100);
/* ! Deprecating primary-dark */
--primary-dark: var(--orange.800);
--primary-dark: var(--orange-800);
/* ! Deprecating primary-pressed */
--primary-pressed: var(--orange.800);
--primary-pressed: var(--orange-800);

--body: var(--gray-100);
--body-medium: var(--gray-400);
Expand Down

0 comments on commit 0d7fc59

Please sign in to comment.