Skip to content

Commit 5b2c545

Browse files
chore: updating dark theme colors
1 parent 7c1783c commit 5b2c545

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

packages/design-tokens/src/css/dark-theme-colors.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
*/
44
[data-theme='dark'],
55
.dark {
6-
/* For default neutral surface (#222325) */
7-
--color-background-default: var(--brand-colors-grey-grey800);
8-
/* For sunken neutral surface below background/default (#121314) */
9-
--color-background-alternative: var(--brand-colors-grey-grey900);
10-
/* For raised neutral surface above background/default (#31333a) */
11-
--color-background-muted: var(--brand-colors-grey-grey700);
6+
/* For default neutral surface (#121314) */
7+
--color-background-default: var(--brand-colors-grey-grey900);
8+
/* For sunken neutral surface below background/default (#000000) */
9+
--color-background-alternative: var(--brand-colors-grey-grey1000);
10+
/* For raised neutral surface above background/default (#222325s) */
11+
--color-background-muted: var(--brand-colors-grey-grey800);
1212
/* Hover state surface for background/default (#313235) */
1313
--color-background-default-hover: #313235;
1414
/* Pressed state surface for background/default (#3f4145) */

packages/design-tokens/src/js/themes/darkTheme/colors.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import type { ThemeColors } from '../types';
44
export const colors: ThemeColors = {
55
background: {
66
/** For default neutral surface (#222325) */
7-
default: brandColor.grey800,
7+
default: brandColor.grey900,
88
/** For sunken neutral surface below background/default (#121314) */
9-
alternative: brandColor.grey900,
9+
alternative: brandColor.grey1000,
1010
/** For raised neutral surface above background/default (#31333A) */
11-
muted: brandColor.grey700,
11+
muted: brandColor.grey800,
1212
/** Hover state surface for background/default (#313235) */
1313
defaultHover: '#313235',
1414
/** Pressed state surface for background/default (#3F4145) */

0 commit comments

Comments
 (0)