Skip to content

Commit

Permalink
chore: updating dark theme colors
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewrmarshall committed Jan 28, 2025
1 parent 7c1783c commit 5b2c545
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions packages/design-tokens/src/css/dark-theme-colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
*/
[data-theme='dark'],
.dark {
/* For default neutral surface (#222325) */
--color-background-default: var(--brand-colors-grey-grey800);
/* For sunken neutral surface below background/default (#121314) */
--color-background-alternative: var(--brand-colors-grey-grey900);
/* For raised neutral surface above background/default (#31333a) */
--color-background-muted: var(--brand-colors-grey-grey700);
/* For default neutral surface (#121314) */
--color-background-default: var(--brand-colors-grey-grey900);
/* For sunken neutral surface below background/default (#000000) */
--color-background-alternative: var(--brand-colors-grey-grey1000);
/* For raised neutral surface above background/default (#222325s) */
--color-background-muted: var(--brand-colors-grey-grey800);
/* Hover state surface for background/default (#313235) */
--color-background-default-hover: #313235;
/* Pressed state surface for background/default (#3f4145) */
Expand Down
6 changes: 3 additions & 3 deletions packages/design-tokens/src/js/themes/darkTheme/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import type { ThemeColors } from '../types';
export const colors: ThemeColors = {
background: {
/** For default neutral surface (#222325) */
default: brandColor.grey800,
default: brandColor.grey900,
/** For sunken neutral surface below background/default (#121314) */
alternative: brandColor.grey900,
alternative: brandColor.grey1000,
/** For raised neutral surface above background/default (#31333A) */
muted: brandColor.grey700,
muted: brandColor.grey800,
/** Hover state surface for background/default (#313235) */
defaultHover: '#313235',
/** Pressed state surface for background/default (#3F4145) */
Expand Down

0 comments on commit 5b2c545

Please sign in to comment.