Skip to content

Commit

Permalink
colors (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking authored Oct 19, 2023
1 parent 63c1a81 commit 571ebfe
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions src/provider/GlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ export const darkThemeCSS = css`
// The primary color tint for the apps
--ac-global-primary-color: #72d9ff;
// These colors are legacy
--ac-global-color-gray-900: #181b1f;
--ac-global-color-gray-800: #1d2126;
--ac-global-color-gray-700: #23282e;
Expand All @@ -196,6 +197,19 @@ export const darkThemeCSS = css`
--ac-global-color-gray-200: #585d64;
--ac-global-color-gray-100: #666b71;
// The newer grays (grey)
--ac-global-color-grey-50: #000000;
--ac-global-color-grey-75: #0e0e0e;
--ac-global-color-grey-100: #1d1d1d;
--ac-global-color-grey-200: #303030;
--ac-global-color-grey-300: #4b4b4b;
--ac-global-color-grey-400: #6a6a6a;
--ac-global-color-grey-500: #8d8d8d;
--ac-global-color-grey-600: #b0b0b0;
--ac-global-color-grey-700: #d0d0d0;
--ac-global-color-grey-800: #ebebeb;
--ac-global-color-grey-900: #ffffff;
--ac-global-color-red-100: #570000;
--ac-global-color-red-200: #6e0000;
--ac-global-color-red-300: #8a0000;
Expand Down Expand Up @@ -387,14 +401,14 @@ export const darkThemeCSS = css`
--ac-global-text-color-500: rgba(255, 255, 255, 0.5);
--ac-global-text-color-300: rgba(255, 255, 255, 0.3);
--ac-global-background-color-default: var(--ac-global-color-gray-900);
--ac-global-background-color-light: var(--ac-global-color-gray-700);
--ac-global-background-color-dark: var(--ac-global-color-gray-900);
--ac-global-background-color-default: var(--ac-global-color-grey-100);
--ac-global-background-color-light: var(--ac-global-color-grey-300);
--ac-global-background-color-dark: var(--ac-global-color-grey-100);
--ac-global-background-color-danger: var(--ac-global-color-danger);
--ac-global-border-color-default: var(--ac-global-color-gray-400);
--ac-global-border-color-light: var(--ac-global-color-gray-400);
--ac-global-border-color-dark: var(--ac-global-color-gray-400);
--ac-global-border-color-default: var(--ac-global-color-grey-300);
--ac-global-border-color-light: var(--ac-global-color-gray-500);
--ac-global-border-color-dark: var(--ac-global-color-gray-300);
// Styles for text fields etc
--ac-global-input-field-border-color: var(--ac-global-color-gray-100);
Expand Down

0 comments on commit 571ebfe

Please sign in to comment.