Skip to content

Commit

Permalink
fix: fix transparent primary colors (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking authored Mar 4, 2024
1 parent 79262db commit f070eaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/provider/GlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,8 @@ export const lightThemeCSS = css`
// The primary color tint for the apps
--ac-global-color-primary: rgb(9, 105, 218);
--ac-global-color-primary-900: rgb(9, 105, 218, 0.9);
--ac-global-color-primary-700: rgb(9, 105, 218, 0.7);
--ac-global-color-primary-900: rgba(9, 105, 218, 0.9);
--ac-global-color-primary-700: rgba(9, 105, 218, 0.7);
// The newer grays (grey)
--ac-global-color-grey-50-rgb: 255, 255, 255;
Expand Down

0 comments on commit f070eaa

Please sign in to comment.