@sats-group/ui-lib 81.3.0 → 81.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/react/icons/24/download.d.ts +3 -0
- package/react/icons/24/download.js +2 -0
- package/react/icons/24/download.js.map +7 -0
- package/react/link-card/link-card.js +1 -1
- package/react/link-card/link-card.js.map +3 -3
- package/react/link-card/link-card.scss +8 -9
- package/react/link-card/link-card.types.d.ts +6 -0
- package/react/link-card/link-card.types.js +1 -0
- package/react/link-card/link-card.types.js.map +4 -4
- package/tokens/dark.scss +3 -1
- package/tokens/darkmode.css +7 -5
- package/tokens/default-colours.css +6 -4
- package/tokens/light.scss +6 -4
- package/tokens/lightmode.css +6 -4
- package/tokens/primitives.scss +2 -2
package/package.json
CHANGED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import*as e from"react";const l=()=>e.createElement("svg",{width:24,height:24,fill:"none"},e.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 .25a.75.75 0 0 1 .75.75v14.19l4.72-4.72a.75.75 0 1 1 1.06 1.06L12 18.06l-6.53-6.53a.75.75 0 1 1 1.06-1.06l4.72 4.72V1A.75.75 0 0 1 12 .25M1.25 22a.75.75 0 0 1 .75-.75h20a.75.75 0 0 1 0 1.5H2a.75.75 0 0 1-.75-.75",clipRule:"evenodd"}));var a=l;export{a as default};
|
|
2
|
+
//# sourceMappingURL=download.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../react/icons/24/download.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nconst SvgDownload = () =>\n /* @__PURE__ */ React.createElement(\n 'svg',\n { width: 24, height: 24, fill: 'none' },\n /* @__PURE__ */ React.createElement('path', {\n fill: 'currentColor',\n fillRule: 'evenodd',\n d: 'M12 .25a.75.75 0 0 1 .75.75v14.19l4.72-4.72a.75.75 0 1 1 1.06 1.06L12 18.06l-6.53-6.53a.75.75 0 1 1 1.06-1.06l4.72 4.72V1A.75.75 0 0 1 12 .25M1.25 22a.75.75 0 0 1 .75-.75h20a.75.75 0 0 1 0 1.5H2a.75.75 0 0 1-.75-.75',\n clipRule: 'evenodd',\n }),\n );\nexport default SvgDownload;\n"],
|
|
5
|
+
"mappings": "AAAA,UAAYA,MAAW,QACvB,MAAMC,EAAc,IACFD,EAAM,cACpB,MACA,CAAE,MAAO,GAAI,OAAQ,GAAI,KAAM,MAAO,EACtBA,EAAM,cAAc,OAAQ,CAC1C,KAAM,eACN,SAAU,UACV,EAAG,0NACH,SAAU,SACZ,CAAC,CACH,EACF,IAAOE,EAAQD",
|
|
6
|
+
"names": ["React", "SvgDownload", "download_default"]
|
|
7
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import*as
|
|
1
|
+
import*as s from"react";import l from"../icons/24/arrow-right";import t from"../icons/24/download";import i from"../text";import{variants as a}from"./link-card.types";const d=({href:o,text:r,title:m,variant:e=a.link})=>s.createElement("a",{className:"link-card",href:o},s.createElement(i,{className:"link-card__title",theme:i.themes.emphasis,size:i.sizes.basic},m),e===a.download?s.createElement(t,null):s.createElement(l,null),r?s.createElement("div",{className:"link-card__text"},s.createElement(i,{size:i.sizes.small},r)):null);var c=d;export{c as default};
|
|
2
2
|
//# sourceMappingURL=link-card.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../react/link-card/link-card.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\n\nimport ArrowRight from '../icons/24/arrow-right';\nimport Text from '../text';\n\nimport { LinkCard as Props } from './link-card.types';\n\nconst LinkCard: React.FC<Props> = ({
|
|
5
|
-
"mappings": "AAAA,UAAYA,MAAW,QAEvB,OAAOC,MAAgB,0BACvB,OAAOC,MAAU,
|
|
6
|
-
"names": ["React", "ArrowRight", "Text", "LinkCard", "href", "text", "title", "link_card_default"]
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\n\nimport ArrowRight from '../icons/24/arrow-right';\nimport Download from '../icons/24/download';\nimport Text from '../text';\n\nimport { LinkCard as Props, variants } from './link-card.types';\n\nconst LinkCard: React.FC<Props> = ({\n href,\n text,\n title,\n variant = variants.link,\n}) => (\n <a className=\"link-card\" href={href}>\n <Text\n className=\"link-card__title\"\n theme={Text.themes.emphasis}\n size={Text.sizes.basic}\n >\n {title}\n </Text>\n {variant === variants.download ? <Download /> : <ArrowRight />}\n {text ? (\n <div className=\"link-card__text\">\n <Text size={Text.sizes.small}>{text}</Text>\n </div>\n ) : null}\n </a>\n);\n\nexport default LinkCard;\n"],
|
|
5
|
+
"mappings": "AAAA,UAAYA,MAAW,QAEvB,OAAOC,MAAgB,0BACvB,OAAOC,MAAc,uBACrB,OAAOC,MAAU,UAEjB,OAA4B,YAAAC,MAAgB,oBAE5C,MAAMC,EAA4B,CAAC,CACjC,KAAAC,EACA,KAAAC,EACA,MAAAC,EACA,QAAAC,EAAUL,EAAS,IACrB,IACEJ,EAAA,cAAC,KAAE,UAAU,YAAY,KAAMM,GAC7BN,EAAA,cAACG,EAAA,CACC,UAAU,mBACV,MAAOA,EAAK,OAAO,SACnB,KAAMA,EAAK,MAAM,OAEhBK,CACH,EACCC,IAAYL,EAAS,SAAWJ,EAAA,cAACE,EAAA,IAAS,EAAKF,EAAA,cAACC,EAAA,IAAW,EAC3DM,EACCP,EAAA,cAAC,OAAI,UAAU,mBACbA,EAAA,cAACG,EAAA,CAAK,KAAMA,EAAK,MAAM,OAAQI,CAAK,CACtC,EACE,IACN,EAGF,IAAOG,EAAQL",
|
|
6
|
+
"names": ["React", "ArrowRight", "Download", "Text", "variants", "LinkCard", "href", "text", "title", "variant", "link_card_default"]
|
|
7
7
|
}
|
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
@use '../../tokens/corner-radius';
|
|
2
|
-
@use '../../tokens/elevation';
|
|
3
2
|
@use '../../tokens/colours';
|
|
4
3
|
@use '../../tokens/spacing';
|
|
5
4
|
|
|
6
5
|
.link-card {
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
align-items: center;
|
|
9
7
|
background: var(--surface-primary-default);
|
|
10
8
|
border-radius: corner-radius.$s;
|
|
11
|
-
|
|
9
|
+
border: 1px solid var(--ge-border-default);
|
|
10
|
+
color: var(--on-surface-primary-default);
|
|
12
11
|
display: grid;
|
|
13
12
|
gap: spacing.$s;
|
|
14
13
|
grid-template-columns: [first] [second];
|
|
15
14
|
padding: spacing.$m;
|
|
16
15
|
text-decoration: none;
|
|
17
16
|
|
|
17
|
+
> svg {
|
|
18
|
+
grid-column: 2;
|
|
19
|
+
justify-self: end;
|
|
20
|
+
}
|
|
21
|
+
|
|
18
22
|
@media (hover: hover) {
|
|
19
23
|
&:hover {
|
|
20
24
|
background: var(--surface-primary-hover);
|
|
@@ -26,11 +30,6 @@
|
|
|
26
30
|
grid-column: 1;
|
|
27
31
|
}
|
|
28
32
|
|
|
29
|
-
&__icon {
|
|
30
|
-
grid-column: 2;
|
|
31
|
-
justify-self: end;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
33
|
&__text {
|
|
35
34
|
grid-column: span 2;
|
|
36
35
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import type { ObjectValues } from '../types';
|
|
2
|
+
export declare const variants: {
|
|
3
|
+
readonly download: "download";
|
|
4
|
+
readonly link: "link";
|
|
5
|
+
};
|
|
1
6
|
export type LinkCard = {
|
|
2
7
|
href: string;
|
|
3
8
|
text?: string;
|
|
4
9
|
title: string;
|
|
10
|
+
variant?: ObjectValues<typeof variants>;
|
|
5
11
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": [],
|
|
4
|
-
"sourcesContent": [],
|
|
5
|
-
"mappings": "",
|
|
6
|
-
"names": []
|
|
3
|
+
"sources": ["../../../react/link-card/link-card.types.ts"],
|
|
4
|
+
"sourcesContent": ["import type { ObjectValues } from '../types';\n\nexport const variants = {\n download: 'download',\n link: 'link',\n} as const;\n\nexport type LinkCard = {\n href: string;\n text?: string;\n title: string;\n variant?: ObjectValues<typeof variants>;\n};\n"],
|
|
5
|
+
"mappings": "AAEO,MAAMA,EAAW,CACtB,SAAU,WACV,KAAM,MACR",
|
|
6
|
+
"names": ["variants"]
|
|
7
7
|
}
|
package/tokens/dark.scss
CHANGED
|
@@ -120,6 +120,7 @@ $ge-graphs-trend-neutral: primitives.$coral-130;
|
|
|
120
120
|
$ge-graphs-trend-upwards: primitives.$spring-green-80;
|
|
121
121
|
$ge-icons-attention: primitives.$gold-100;
|
|
122
122
|
$ge-icons-delete: primitives.$chili-red-80;
|
|
123
|
+
$ge-icons-featured: primitives.$coral-100;
|
|
123
124
|
$ge-icons-fixed: primitives.$white-100;
|
|
124
125
|
$ge-icons-negative: primitives.$cardinal-100;
|
|
125
126
|
$ge-icons-positive: primitives.$spring-green-80;
|
|
@@ -134,7 +135,7 @@ $ge-indicator-tags-information-alternate: primitives.$bright-blue-160;
|
|
|
134
135
|
$ge-indicator-tags-information-default: primitives.$bright-blue-100;
|
|
135
136
|
$ge-indicator-tags-negative-alternate: primitives.$cardinal-170;
|
|
136
137
|
$ge-indicator-tags-negative-default: primitives.$cardinal-100;
|
|
137
|
-
$ge-indicator-tags-neutral-alternate: primitives.$
|
|
138
|
+
$ge-indicator-tags-neutral-alternate: primitives.$white-10;
|
|
138
139
|
$ge-indicator-tags-neutral-default: primitives.$black-60;
|
|
139
140
|
$ge-indicator-tags-positive-alternate: primitives.$spring-green-170;
|
|
140
141
|
$ge-indicator-tags-positive-default: primitives.$spring-green-100;
|
|
@@ -188,6 +189,7 @@ $ge-signal-border-success: primitives.$spring-green-30;
|
|
|
188
189
|
$ge-signal-border-waiting-list: primitives.$egyptian-purple-60;
|
|
189
190
|
$ge-signal-border-warning: primitives.$gold-30;
|
|
190
191
|
$ge-skeleton-default: primitives.$black-80;
|
|
192
|
+
$ge-skeleton-fixed: primitives.$white-40;
|
|
191
193
|
$ge-tabs-background-default: primitives.$white-0;
|
|
192
194
|
$ge-tabs-background-disabled: primitives.$black-95;
|
|
193
195
|
$ge-tabs-background-hover: primitives.$coral-190;
|
package/tokens/darkmode.css
CHANGED
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
--ge-graphs-trend-upwards: #3a9979;
|
|
120
120
|
--ge-icons-attention: #e2b74a;
|
|
121
121
|
--ge-icons-delete: #e15b51;
|
|
122
|
+
--ge-icons-featured: #fa5333;
|
|
122
123
|
--ge-icons-fixed: #ffffff;
|
|
123
124
|
--ge-icons-negative: #b93947;
|
|
124
125
|
--ge-icons-positive: #3a9979;
|
|
@@ -131,15 +132,15 @@
|
|
|
131
132
|
--ge-indicator-tags-featured-default: #fb6447;
|
|
132
133
|
--ge-indicator-tags-information-alternate: #0f2f46;
|
|
133
134
|
--ge-indicator-tags-information-default: #2676b0;
|
|
134
|
-
--ge-indicator-tags-negative-alternate: #
|
|
135
|
+
--ge-indicator-tags-negative-alternate: #4a171c;
|
|
135
136
|
--ge-indicator-tags-negative-default: #b93947;
|
|
136
|
-
--ge-indicator-tags-neutral-alternate: #
|
|
137
|
+
--ge-indicator-tags-neutral-alternate: #ffffff1a;
|
|
137
138
|
--ge-indicator-tags-neutral-default: #666666;
|
|
138
139
|
--ge-indicator-tags-positive-alternate: #03261a;
|
|
139
140
|
--ge-indicator-tags-positive-default: #097f58;
|
|
140
141
|
--ge-indicators-attention-alternate: #443716;
|
|
141
142
|
--ge-indicators-attention-default: #e2b74a;
|
|
142
|
-
--ge-indicators-negative-alternate: #
|
|
143
|
+
--ge-indicators-negative-alternate: #4a171c;
|
|
143
144
|
--ge-indicators-negative-default: #b93947;
|
|
144
145
|
--ge-indicators-neutral-alternate: #333333;
|
|
145
146
|
--ge-indicators-neutral-default: #9ea6ae;
|
|
@@ -187,6 +188,7 @@
|
|
|
187
188
|
--ge-signal-border-waiting-list: #8787b9;
|
|
188
189
|
--ge-signal-border-warning: #f3e6c5;
|
|
189
190
|
--ge-skeleton-default: #333333;
|
|
191
|
+
--ge-skeleton-fixed: #ffffff66;
|
|
190
192
|
--ge-tabs-background-default: #ffffff00;
|
|
191
193
|
--ge-tabs-background-disabled: #0d0d0d;
|
|
192
194
|
--ge-tabs-background-hover: #32110a;
|
|
@@ -382,7 +384,7 @@
|
|
|
382
384
|
--on-buttons-on-waiting-list-outlined-default: #5f5fa2;
|
|
383
385
|
--on-buttons-on-waiting-list-outlined-disabled: #808080;
|
|
384
386
|
--on-buttons-on-waiting-list-outlined-hover: #37378b;
|
|
385
|
-
--signal-surface-error: #
|
|
387
|
+
--signal-surface-error: #4a171c;
|
|
386
388
|
--signal-surface-featured: #32110a;
|
|
387
389
|
--signal-surface-information: #0f2f46;
|
|
388
390
|
--signal-surface-neutral: #1a1a1a;
|
|
@@ -407,7 +409,7 @@
|
|
|
407
409
|
--workout-surface-gymfloor-hover: #644000;
|
|
408
410
|
--workout-surface-other: #051e0e;
|
|
409
411
|
--workout-surface-other-hover: #184629;
|
|
410
|
-
--workout-surface-pt: #
|
|
412
|
+
--workout-surface-pt: #002a47;
|
|
411
413
|
--workout-surface-pt-hover: #16496c;
|
|
412
414
|
--workout-surface-treatments: #011314;
|
|
413
415
|
--workout-surface-treatments-hover: #04383b;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
html:not([data-theme]) {
|
|
2
2
|
--background-primary-default: #f3f4f5;
|
|
3
|
-
--background-primary-hover: #
|
|
3
|
+
--background-primary-hover: #e7e9eb;
|
|
4
4
|
--background-primary-selected: #f3f4f5;
|
|
5
5
|
--background-secondary-default: #ffffff;
|
|
6
|
-
--background-secondary-hover: #
|
|
6
|
+
--background-secondary-hover: #f7f7f7;
|
|
7
7
|
--background-secondary-selected: #ffffff;
|
|
8
8
|
--buttons-action-default: #ffffff00;
|
|
9
9
|
--buttons-action-disabled: #ffffff00;
|
|
@@ -119,6 +119,7 @@ html:not([data-theme]) {
|
|
|
119
119
|
--ge-graphs-trend-upwards: #3a9979;
|
|
120
120
|
--ge-icons-attention: #e2b74a;
|
|
121
121
|
--ge-icons-delete: #d93226;
|
|
122
|
+
--ge-icons-featured: #fa5333;
|
|
122
123
|
--ge-icons-fixed: #ffffff;
|
|
123
124
|
--ge-icons-negative: #b93947;
|
|
124
125
|
--ge-icons-positive: #097f58;
|
|
@@ -187,6 +188,7 @@ html:not([data-theme]) {
|
|
|
187
188
|
--ge-signal-border-waiting-list: #5f5fa2;
|
|
188
189
|
--ge-signal-border-warning: #866c2a;
|
|
189
190
|
--ge-skeleton-default: #dcdee0;
|
|
191
|
+
--ge-skeleton-fixed: #ffffff66;
|
|
190
192
|
--ge-tabs-background-default: #ffffff00;
|
|
191
193
|
--ge-tabs-background-disabled: #e7e9eb;
|
|
192
194
|
--ge-tabs-background-hover: #fff6f5;
|
|
@@ -213,7 +215,7 @@ html:not([data-theme]) {
|
|
|
213
215
|
--ge-workouts-pt: #70c4ff;
|
|
214
216
|
--ge-workouts-treatments: #065d63;
|
|
215
217
|
--on-background-error: #942e39;
|
|
216
|
-
--on-background-featured: #
|
|
218
|
+
--on-background-featured: #af3a24;
|
|
217
219
|
--on-background-information: #226a9e;
|
|
218
220
|
--on-background-neutral: #666666;
|
|
219
221
|
--on-background-success: #076646;
|
|
@@ -395,7 +397,7 @@ html:not([data-theme]) {
|
|
|
395
397
|
--surface-primary-selected: #d4e4ef;
|
|
396
398
|
--surface-secondary-default: #f7f7f7;
|
|
397
399
|
--surface-secondary-disabled: #e5e5e5;
|
|
398
|
-
--surface-secondary-hover: #
|
|
400
|
+
--surface-secondary-hover: #f2f2f2;
|
|
399
401
|
--surface-secondary-selected: #f2f2f2;
|
|
400
402
|
--workout-surface-availability: #dcdee0;
|
|
401
403
|
--workout-surface-availability-hover: #cfd3d6;
|
package/tokens/light.scss
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@use './primitives';
|
|
2
2
|
/* Figma: https://www.figma.com/file/WzKCwRY09zn4rzRVfY0YvdRt/%F0%9F%8E%A8-sats-ds-styles?type=design&node-id=8481%3A40160&mode=design&t=4Gq1pqiSLpmo4bBj-1 */
|
|
3
3
|
$background-primary-default: primitives.$blue-5;
|
|
4
|
-
$background-primary-hover: primitives.$
|
|
4
|
+
$background-primary-hover: primitives.$blue-10;
|
|
5
5
|
$background-primary-selected: primitives.$blue-5;
|
|
6
6
|
$background-secondary-default: primitives.$white-100;
|
|
7
|
-
$background-secondary-hover: primitives.$
|
|
7
|
+
$background-secondary-hover: primitives.$black-3;
|
|
8
8
|
$background-secondary-selected: primitives.$white-100;
|
|
9
9
|
$buttons-action-default: primitives.$white-0;
|
|
10
10
|
$buttons-action-disabled: primitives.$white-0;
|
|
@@ -120,6 +120,7 @@ $ge-graphs-trend-neutral: primitives.$coral-40;
|
|
|
120
120
|
$ge-graphs-trend-upwards: primitives.$spring-green-80;
|
|
121
121
|
$ge-icons-attention: primitives.$gold-100;
|
|
122
122
|
$ge-icons-delete: primitives.$chili-red-100;
|
|
123
|
+
$ge-icons-featured: primitives.$coral-100;
|
|
123
124
|
$ge-icons-fixed: primitives.$white-100;
|
|
124
125
|
$ge-icons-negative: primitives.$cardinal-100;
|
|
125
126
|
$ge-icons-positive: primitives.$spring-green-100;
|
|
@@ -188,6 +189,7 @@ $ge-signal-border-success: primitives.$spring-green-120;
|
|
|
188
189
|
$ge-signal-border-waiting-list: primitives.$egyptian-purple-80;
|
|
189
190
|
$ge-signal-border-warning: primitives.$gold-140;
|
|
190
191
|
$ge-skeleton-default: primitives.$light-grey-15;
|
|
192
|
+
$ge-skeleton-fixed: primitives.$white-40;
|
|
191
193
|
$ge-tabs-background-default: primitives.$white-0;
|
|
192
194
|
$ge-tabs-background-disabled: primitives.$blue-10;
|
|
193
195
|
$ge-tabs-background-hover: primitives.$coral-5;
|
|
@@ -214,7 +216,7 @@ $ge-workouts-other: primitives.$celadon-100;
|
|
|
214
216
|
$ge-workouts-pt: primitives.$uranian-blue-100;
|
|
215
217
|
$ge-workouts-treatments: primitives.$caribbean-current-100;
|
|
216
218
|
$on-background-error: primitives.$cardinal-120;
|
|
217
|
-
$on-background-featured: primitives.$coral-
|
|
219
|
+
$on-background-featured: primitives.$coral-130;
|
|
218
220
|
$on-background-information: primitives.$bright-blue-110;
|
|
219
221
|
$on-background-neutral: primitives.$black-60;
|
|
220
222
|
$on-background-success: primitives.$spring-green-120;
|
|
@@ -396,7 +398,7 @@ $surface-primary-hover: primitives.$bright-blue-10;
|
|
|
396
398
|
$surface-primary-selected: primitives.$bright-blue-20;
|
|
397
399
|
$surface-secondary-default: primitives.$black-3;
|
|
398
400
|
$surface-secondary-disabled: primitives.$black-10;
|
|
399
|
-
$surface-secondary-hover: primitives.$
|
|
401
|
+
$surface-secondary-hover: primitives.$black-5;
|
|
400
402
|
$surface-secondary-selected: primitives.$black-5;
|
|
401
403
|
$workout-surface-availability: primitives.$light-grey-15;
|
|
402
404
|
$workout-surface-availability-hover: primitives.$blue-20;
|
package/tokens/lightmode.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[data-theme="light"] {
|
|
2
2
|
--background-primary-default: #f3f4f5;
|
|
3
|
-
--background-primary-hover: #
|
|
3
|
+
--background-primary-hover: #e7e9eb;
|
|
4
4
|
--background-primary-selected: #f3f4f5;
|
|
5
5
|
--background-secondary-default: #ffffff;
|
|
6
|
-
--background-secondary-hover: #
|
|
6
|
+
--background-secondary-hover: #f7f7f7;
|
|
7
7
|
--background-secondary-selected: #ffffff;
|
|
8
8
|
--buttons-action-default: #ffffff00;
|
|
9
9
|
--buttons-action-disabled: #ffffff00;
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
--ge-graphs-trend-upwards: #3a9979;
|
|
120
120
|
--ge-icons-attention: #e2b74a;
|
|
121
121
|
--ge-icons-delete: #d93226;
|
|
122
|
+
--ge-icons-featured: #fa5333;
|
|
122
123
|
--ge-icons-fixed: #ffffff;
|
|
123
124
|
--ge-icons-negative: #b93947;
|
|
124
125
|
--ge-icons-positive: #097f58;
|
|
@@ -187,6 +188,7 @@
|
|
|
187
188
|
--ge-signal-border-waiting-list: #5f5fa2;
|
|
188
189
|
--ge-signal-border-warning: #866c2a;
|
|
189
190
|
--ge-skeleton-default: #dcdee0;
|
|
191
|
+
--ge-skeleton-fixed: #ffffff66;
|
|
190
192
|
--ge-tabs-background-default: #ffffff00;
|
|
191
193
|
--ge-tabs-background-disabled: #e7e9eb;
|
|
192
194
|
--ge-tabs-background-hover: #fff6f5;
|
|
@@ -213,7 +215,7 @@
|
|
|
213
215
|
--ge-workouts-pt: #70c4ff;
|
|
214
216
|
--ge-workouts-treatments: #065d63;
|
|
215
217
|
--on-background-error: #942e39;
|
|
216
|
-
--on-background-featured: #
|
|
218
|
+
--on-background-featured: #af3a24;
|
|
217
219
|
--on-background-information: #226a9e;
|
|
218
220
|
--on-background-neutral: #666666;
|
|
219
221
|
--on-background-success: #076646;
|
|
@@ -395,7 +397,7 @@
|
|
|
395
397
|
--surface-primary-selected: #d4e4ef;
|
|
396
398
|
--surface-secondary-default: #f7f7f7;
|
|
397
399
|
--surface-secondary-disabled: #e5e5e5;
|
|
398
|
-
--surface-secondary-hover: #
|
|
400
|
+
--surface-secondary-hover: #f2f2f2;
|
|
399
401
|
--surface-secondary-selected: #f2f2f2;
|
|
400
402
|
--workout-surface-availability: #dcdee0;
|
|
401
403
|
--workout-surface-availability-hover: #cfd3d6;
|
package/tokens/primitives.scss
CHANGED
|
@@ -37,7 +37,7 @@ $bright-blue-80: #5191c0;
|
|
|
37
37
|
$cardinal-10: #f8ebed;
|
|
38
38
|
$cardinal-100: #b93947;
|
|
39
39
|
$cardinal-120: #942e39;
|
|
40
|
-
$cardinal-170: #
|
|
40
|
+
$cardinal-170: #4a171c;
|
|
41
41
|
$cardinal-30: #eac4c8;
|
|
42
42
|
$cardinal-60: #d58891;
|
|
43
43
|
$caribbean-current-10: #e6efef;
|
|
@@ -124,7 +124,7 @@ $uranian-blue-10: #f1f9ff;
|
|
|
124
124
|
$uranian-blue-100: #70c4ff;
|
|
125
125
|
$uranian-blue-140: #2d6891;
|
|
126
126
|
$uranian-blue-160: #16496c;
|
|
127
|
-
$uranian-blue-180: #
|
|
127
|
+
$uranian-blue-180: #002a47;
|
|
128
128
|
$uranian-blue-20: #e2f3ff;
|
|
129
129
|
$uranian-blue-40: #c6e7ff;
|
|
130
130
|
$uranian-blue-60: #a9dcff;
|