Skip to content

Commit 078bfd2

Browse files
committed
update color values
1 parent af1ec5b commit 078bfd2

File tree

1 file changed

+21
-17
lines changed

1 file changed

+21
-17
lines changed

src/libs/theme/styles/globals.scss

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
:root {
4646
--color_bg_page: var(--functional-gray-950);
4747
--color_fg_bold: var(--functional-gray-50);
48-
--color_fg_default: var(--functional-gray-200);
48+
--color_fg_default: var(--functional-gray-500);
4949
--color_fg_link_primary: var(--cloud);
5050

5151
--color_bg_app_bar: rgba(17, 17, 17, 0.66);
@@ -61,7 +61,7 @@
6161

6262
--color_bg_auth0-cta: linear-gradient(251deg, #1e1e1e 2.29%, #191919 87.03%);
6363

64-
--color_bg_layer: var(--functional-gray-950);
64+
--color_bg_layer: var(--functional-gray-0);
6565
--color_bg_layer_bold: var(--functional-gray-700);
6666
--color_bg_layer_boldest: var(--functional-gray-50);
6767
--color_bg_layer_alternate: var(--functional-gray-850);
@@ -77,11 +77,12 @@
7777
--color_code_blue2: #7487eb;
7878
--color_code_blue3: #7487eb;
7979
--color_code_dark_blue: #fafbfe;
80-
--color_code_dark_blue2: #b9c3f5;
80+
--color_code_dark_blue2: #3f59e4;
8181
--color_code_purple: #ccbcfa;
82-
--color_code_orange: #f1b99b;
82+
--color_code_orange: #e7834e;
8383
--color_code_inverse: #fefaf8;
8484
--color_code_teal: #3b8d7e;
85+
--color_code_green: #52af6d;
8586
--color_code_dark_teal: #8ed2c5;
8687
--color_code_dark_neutral: #808080;
8788

@@ -138,19 +139,19 @@
138139
--color_fg_on_state_caution: #000000;
139140
--color_fg_on_state_caution_subtle: #e3c423;
140141

141-
--color_jwt_header: #6dc993;
142-
--color_jwt_payload: #e5e5e5;
143-
--color_jwt_signature: #8c9bef;
142+
--color_jwt_header: #e27133;
143+
--color_jwt_payload: #9472f7;
144+
--color_jwt_signature: #149750;
144145
--color_jwt_dot: #ff69e4;
145146

146147
--color_bg_scrollbar: #6b7380;
147148
}
148149

149150
html[data-theme="light"],
150151
html[data-theme="system-light"] {
151-
--color_jwt_header: #096256;
152-
--color_jwt_payload: #383838;
153-
--color_jwt_signature: #2c3ea0;
152+
--color_jwt_header: #e27133 ;
153+
--color_jwt_payload: #9472f7;
154+
--color_jwt_signature: #149750;
154155
--color_jwt_dot: #cc36b1;
155156

156157
--color_bg_state_info_subtle: #eef0fd;
@@ -195,7 +196,7 @@ html[data-theme="system-light"] {
195196

196197
--color_bg_page: var(--functional-gray-0);
197198
--color_fg_bold: var(--charcoal2);
198-
--color_fg_default: var(--functional-gray-650);
199+
--color_fg_default: var(--functional-gray-500);
199200
--color_fg_link_primary: var(--sky);
200201

201202
--color_bg_app_bar: rgba(241, 241, 241, 0.66);
@@ -241,9 +242,9 @@ html[data-theme="system-light"] {
241242
--color_code_blue2: #7487eb;
242243
--color_code_blue3: #7487eb;
243244
--color_code_dark_blue: #10163a;
244-
--color_code_dark_blue2: #263588;
245+
--color_code_dark_blue2: #3f59e4;
245246
--color_code_purple: #9979f5;
246-
--color_code_orange: #a35125;
247+
--color_code_orange: #e7834e;
247248
--color_code_inverse: #291409;
248249
--color_code_teal: #3b8d7e;
249250
--color_code_dark_teal: #419d8c;
@@ -416,15 +417,18 @@ pre[class*="language-"] {
416417

417418
.token.property,
418419
.token.tag,
419-
.token.number,
420420
.token.constant,
421421
.token.symbol,
422422
.token.deleted {
423-
color: var(--color_code_orange);
423+
color: var(--color_code_dark_blue);
424+
}
425+
426+
.token.number {
427+
color: var(--color_code_dark_blue2)
424428
}
425429

426430
.token.boolean {
427-
color: var(--color_fg_code);
431+
color: var(--color_code_orange);
428432
}
429433

430434
.token.selector,
@@ -433,7 +437,7 @@ pre[class*="language-"] {
433437
.token.char,
434438
.token.builtin,
435439
.token.inserted {
436-
color: var(--color_code_dark_blue);
440+
color: var(--color_code_green);
437441
}
438442

439443
.token.operator,

0 commit comments

Comments
 (0)