@sats-group/ui-lib 74.2.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/.nvmrc +1 -0
- package/README.md +35 -0
- package/catalog-info.yaml +14 -0
- package/eslint.config.mjs +94 -0
- package/fonts/Inter-BoldItalic.woff +0 -0
- package/fonts/Inter-BoldItalic.woff2 +0 -0
- package/fonts/Inter-ExtraBold.woff +0 -0
- package/fonts/Inter-ExtraBold.woff2 +0 -0
- package/fonts/Inter-Italic.woff +0 -0
- package/fonts/Inter-Italic.woff2 +0 -0
- package/fonts/Inter-Regular.woff +0 -0
- package/fonts/Inter-Regular.woff2 +0 -0
- package/fonts/Inter-SemiBold.woff +0 -0
- package/fonts/Inter-SemiBold.woff2 +0 -0
- package/fonts/LICENSE.txt +92 -0
- package/fonts/SATSHeadline-Bold.woff +0 -0
- package/fonts/SATSHeadline-BoldItalic.woff +0 -0
- package/fonts/SATSHeadline-RegularItalic.woff +0 -0
- package/fonts/SATSHeadline-SemiBoldItalic.woff +0 -0
- package/logos/e-avatar.svg +3 -0
- package/logos/elixia-letter.svg +3 -0
- package/logos/elixia-small.svg +8 -0
- package/logos/elixia.svg +8 -0
- package/logos/s-avatar.svg +3 -0
- package/logos/sats-letter.svg +3 -0
- package/logos/sats-small.svg +3 -0
- package/logos/sats.svg +4 -0
- package/package.json +58 -0
- package/react/add-bem-modifiers.ts +51 -0
- package/react/badge/badge.scss +53 -0
- package/react/badge/badge.tsx +28 -0
- package/react/badge/badge.types.ts +34 -0
- package/react/badge/index.ts +2 -0
- package/react/banner/banner.scss +118 -0
- package/react/banner/banner.tsx +92 -0
- package/react/banner/banner.types.ts +10 -0
- package/react/banner/index.ts +2 -0
- package/react/bomb/bomb.scss +33 -0
- package/react/bomb/bomb.tsx +19 -0
- package/react/bomb/bomb.types.ts +1 -0
- package/react/bomb/index.ts +2 -0
- package/react/button/button.tsx +19 -0
- package/react/button/button.types.ts +3 -0
- package/react/button/index.ts +2 -0
- package/react/checkbox/checkbox.scss +218 -0
- package/react/checkbox/checkbox.tsx +176 -0
- package/react/checkbox/checkbox.types.ts +19 -0
- package/react/checkbox/index.ts +2 -0
- package/react/chip/chip.scss +46 -0
- package/react/chip/chip.tsx +37 -0
- package/react/chip/chip.types.ts +18 -0
- package/react/chip/index.ts +2 -0
- package/react/chip/remove.tsx +14 -0
- package/react/chip-selected/chip-selected.scss +47 -0
- package/react/chip-selected/chip-selected.tsx +102 -0
- package/react/chip-selected/chip-selected.types.ts +11 -0
- package/react/chip-selected/index.ts +2 -0
- package/react/confirmation/confirmation.scss +60 -0
- package/react/confirmation/confirmation.tsx +85 -0
- package/react/confirmation/confirmation.types.ts +24 -0
- package/react/confirmation/index.ts +2 -0
- package/react/context-menu/context-menu.scss +183 -0
- package/react/context-menu/context-menu.tsx +200 -0
- package/react/context-menu/context-menu.types.ts +71 -0
- package/react/context-menu/index.ts +2 -0
- package/react/cropped-image/cropped-image.scss +48 -0
- package/react/cropped-image/cropped-image.tsx +36 -0
- package/react/cropped-image/cropped-image.types.ts +26 -0
- package/react/cropped-image/index.ts +2 -0
- package/react/dropdown-list/dropdown-list.scss +170 -0
- package/react/dropdown-list/dropdown-list.tsx +116 -0
- package/react/dropdown-list/dropdown-list.types.ts +17 -0
- package/react/dropdown-list/index.ts +2 -0
- package/react/expander/expander.scss +115 -0
- package/react/expander/expander.tsx +167 -0
- package/react/expander/expander.types.ts +26 -0
- package/react/expander/index.ts +2 -0
- package/react/filter/filter.scss +94 -0
- package/react/filter/filter.tsx +99 -0
- package/react/filter/filter.types.ts +8 -0
- package/react/filter/index.ts +2 -0
- package/react/filter-wrapper/filter-wrapper.scss +46 -0
- package/react/filter-wrapper/filter-wrapper.tsx +24 -0
- package/react/filter-wrapper/filter-wrapper.types.ts +10 -0
- package/react/filter-wrapper/index.ts +2 -0
- package/react/flag/flag.scss +26 -0
- package/react/flag/flag.tsx +27 -0
- package/react/flag/flag.types.ts +17 -0
- package/react/flag/index.ts +2 -0
- package/react/form-content/checkbox-category.tsx +183 -0
- package/react/form-content/form-content.checkbox-list.tsx +126 -0
- package/react/form-content/form-content.checkbox-list.types.ts +36 -0
- package/react/form-content/form-content.radio-list.tsx +58 -0
- package/react/form-content/form-content.range.tsx +20 -0
- package/react/form-content/form-content.range.types.ts +14 -0
- package/react/form-content/form-content.scss +234 -0
- package/react/form-content/form-content.search.tsx +47 -0
- package/react/form-content/form-content.tsx +95 -0
- package/react/form-content/form-content.types.ts +55 -0
- package/react/form-content/index.ts +2 -0
- package/react/form-content/types/index.d.ts +1 -0
- package/react/hidden-input/hidden-input.tsx +9 -0
- package/react/hidden-input/hidden-input.types.ts +6 -0
- package/react/hidden-input/index.ts +2 -0
- package/react/hooks/focus-previous-element.ts +30 -0
- package/react/hooks/is-running-on-client.ts +1 -0
- package/react/hooks/use-click-outside.ts +23 -0
- package/react/hooks/use-escape.ts +18 -0
- package/react/hooks/use-event.ts +29 -0
- package/react/hooks/use-is-mounted.ts +11 -0
- package/react/hooks/use-toggle.ts +19 -0
- package/react/icons/16/close.tsx +12 -0
- package/react/icons/18/close.tsx +18 -0
- package/react/icons/24/arrow-down.tsx +14 -0
- package/react/icons/24/arrow-right.tsx +14 -0
- package/react/icons/24/arrow-up.tsx +14 -0
- package/react/icons/24/close.tsx +12 -0
- package/react/icons/24/remove.tsx +12 -0
- package/react/icons/24/search.tsx +10 -0
- package/react/icons/icons.md +3 -0
- package/react/indexed-access-type.ts +1 -0
- package/react/link/index.ts +2 -0
- package/react/link/link.scss +44 -0
- package/react/link/link.tsx +62 -0
- package/react/link/link.types.ts +37 -0
- package/react/link-button/index.ts +2 -0
- package/react/link-button/link-button.tsx +17 -0
- package/react/link-button/link-button.types.ts +5 -0
- package/react/link-card/index.ts +2 -0
- package/react/link-card/link-card.scss +37 -0
- package/react/link-card/link-card.tsx +24 -0
- package/react/link-card/link-card.types.ts +5 -0
- package/react/logos/e-avatar.tsx +12 -0
- package/react/logos/elixia-letter.tsx +12 -0
- package/react/logos/elixia-small.tsx +12 -0
- package/react/logos/elixia.tsx +12 -0
- package/react/logos/index.ts +8 -0
- package/react/logos/s-avatar.tsx +12 -0
- package/react/logos/sats-letter.tsx +12 -0
- package/react/logos/sats-small.tsx +12 -0
- package/react/logos/sats.tsx +12 -0
- package/react/message/hook/use-message.ts +22 -0
- package/react/message/index.ts +2 -0
- package/react/message/message.scss +92 -0
- package/react/message/message.tsx +60 -0
- package/react/message/message.types.ts +39 -0
- package/react/message/publish.ts +19 -0
- package/react/message-field/index.ts +2 -0
- package/react/message-field/message-field.scss +21 -0
- package/react/message-field/message-field.tsx +70 -0
- package/react/message-field/message-field.types.ts +24 -0
- package/react/modal/index.ts +2 -0
- package/react/modal/modal.scss +162 -0
- package/react/modal/modal.tsx +130 -0
- package/react/modal/modal.types.ts +36 -0
- package/react/modal/tab-trapper.tsx +68 -0
- package/react/progress-bar/index.ts +2 -0
- package/react/progress-bar/progress-bar.scss +71 -0
- package/react/progress-bar/progress-bar.tsx +81 -0
- package/react/progress-bar/progress-bar.types.ts +35 -0
- package/react/radio/index.ts +2 -0
- package/react/radio/radio.scss +142 -0
- package/react/radio/radio.tsx +87 -0
- package/react/radio/radio.types.ts +15 -0
- package/react/scale-bar/index.ts +2 -0
- package/react/scale-bar/scale-bar.scss +22 -0
- package/react/scale-bar/scale-bar.tsx +29 -0
- package/react/scale-bar/scale-bar.types.ts +4 -0
- package/react/search/index.ts +2 -0
- package/react/search/search.scss +207 -0
- package/react/search/search.tsx +255 -0
- package/react/search/search.types.ts +43 -0
- package/react/select/chevron-down.tsx +24 -0
- package/react/select/index.ts +2 -0
- package/react/select/select.scss +135 -0
- package/react/select/select.tsx +105 -0
- package/react/select/select.types.ts +19 -0
- package/react/select-option/README.md +3 -0
- package/react/select-option/index.ts +2 -0
- package/react/select-option/select-option.tsx +16 -0
- package/react/select-option/select-option.types.ts +8 -0
- package/react/tag/index.ts +2 -0
- package/react/tag/tag.scss +107 -0
- package/react/tag/tag.tsx +26 -0
- package/react/tag/tag.types.ts +30 -0
- package/react/text/index.ts +2 -0
- package/react/text/text.scss +109 -0
- package/react/text/text.tsx +40 -0
- package/react/text/text.types.ts +29 -0
- package/react/text-area/index.ts +2 -0
- package/react/text-area/text-area.scss +180 -0
- package/react/text-area/text-area.tsx +153 -0
- package/react/text-area/text-area.types.ts +24 -0
- package/react/text-input/index.ts +2 -0
- package/react/text-input/text-input.scss +233 -0
- package/react/text-input/text-input.tsx +106 -0
- package/react/text-input/text-input.types.ts +19 -0
- package/react/toggle/index.ts +2 -0
- package/react/toggle/toggle.scss +69 -0
- package/react/toggle/toggle.tsx +83 -0
- package/react/toggle/toggle.types.ts +11 -0
- package/react/toolbox/index.ts +2 -0
- package/react/toolbox/toolbox.scss +68 -0
- package/react/toolbox/toolbox.tsx +43 -0
- package/react/toolbox/toolbox.types.ts +39 -0
- package/react/ts/debounce.ts +12 -0
- package/react/types.ts +38 -0
- package/react/use-input-validation.ts +47 -0
- package/react/use-input-validation.types.ts +12 -0
- package/react/visually-button/index.ts +2 -0
- package/react/visually-button/visually-button.scss +470 -0
- package/react/visually-button/visually-button.tsx +130 -0
- package/react/visually-button/visually-button.types.ts +71 -0
- package/react/visually-hidden/index.ts +2 -0
- package/react/visually-hidden/visually-hidden.scss +6 -0
- package/react/visually-hidden/visually-hidden.tsx +10 -0
- package/tokens/corner-radius.scss +5 -0
- package/tokens/dark.scss +392 -0
- package/tokens/darkmode.scss +131 -0
- package/tokens/elevation.scss +57 -0
- package/tokens/font-faces.scss +62 -0
- package/tokens/font-names.scss +2 -0
- package/tokens/font-sizes.scss +95 -0
- package/tokens/light.scss +392 -0
- package/tokens/lightmode.scss +131 -0
- package/tokens/primitives.scss +137 -0
- package/tokens/spacing.scss +12 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { ReactElement } from 'react';
|
|
2
|
+
|
|
3
|
+
import { ButtonHtmlProps, ObjectValues, LinkHtmlProps } from '../types';
|
|
4
|
+
|
|
5
|
+
export const sizes = {
|
|
6
|
+
small: 'small',
|
|
7
|
+
basic: 'basic',
|
|
8
|
+
large: 'large',
|
|
9
|
+
} as const;
|
|
10
|
+
|
|
11
|
+
export const variants = {
|
|
12
|
+
complete: 'complete',
|
|
13
|
+
cta: 'cta',
|
|
14
|
+
ctaSecondary: 'cta-secondary',
|
|
15
|
+
ctaSecondaryWhite: 'cta-secondary-white',
|
|
16
|
+
primary: 'primary',
|
|
17
|
+
primaryDestructive: 'primary-destructive',
|
|
18
|
+
primaryWhite: 'primary-white',
|
|
19
|
+
secondary: 'secondary',
|
|
20
|
+
secondaryWhite: 'secondary-white',
|
|
21
|
+
secondaryDestructive: 'secondary-destructive',
|
|
22
|
+
tertiary: 'tertiary',
|
|
23
|
+
tertiaryDestructive: 'tertiary-destructive',
|
|
24
|
+
fixedTertiary: 'fixed-tertiary',
|
|
25
|
+
waitlist: 'waitlist',
|
|
26
|
+
waitlistSecondary: 'waitlist-secondary',
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
export const themes = {
|
|
30
|
+
spinner: 'spinner',
|
|
31
|
+
normal: 'normal',
|
|
32
|
+
} as const;
|
|
33
|
+
|
|
34
|
+
type TextProp = {
|
|
35
|
+
text: string;
|
|
36
|
+
ariaLabel?: never;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
type AriaLabelProp = {
|
|
40
|
+
ariaLabel: string;
|
|
41
|
+
text?: never;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
type BasicProps = {
|
|
45
|
+
className?: string;
|
|
46
|
+
elementName?: string;
|
|
47
|
+
leadingIcon?: ReactElement;
|
|
48
|
+
trailingIcon?: ReactElement;
|
|
49
|
+
hasStackedIcon?: boolean;
|
|
50
|
+
size?: ObjectValues<typeof sizes>;
|
|
51
|
+
testId?: string;
|
|
52
|
+
theme?: ObjectValues<typeof themes>;
|
|
53
|
+
variant?: ObjectValues<typeof variants>;
|
|
54
|
+
wide?: boolean;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
type CommonProps = (BasicProps & TextProp) | (BasicProps & AriaLabelProp);
|
|
58
|
+
|
|
59
|
+
export type VisuallyButtonButton = CommonProps & ButtonHtmlProps;
|
|
60
|
+
|
|
61
|
+
export type VisuallyButtonLink = CommonProps & LinkHtmlProps;
|
|
62
|
+
|
|
63
|
+
// NOTE: If the element isn't `a` or `button` we don't restrict the type of the rest props
|
|
64
|
+
type VisuallyButtonOther = CommonProps & {
|
|
65
|
+
[key: string]: unknown;
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export type VisuallyButton =
|
|
69
|
+
| ({ elementName: 'button' } & VisuallyButtonButton)
|
|
70
|
+
| ({ elementName: 'a' } & VisuallyButtonLink)
|
|
71
|
+
| ({ elementName: string } & VisuallyButtonOther);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
const VisuallyHidden: React.FunctionComponent<React.PropsWithChildren> = ({
|
|
4
|
+
children,
|
|
5
|
+
}) =>
|
|
6
|
+
React.Children.count(children) === 0 ? null : (
|
|
7
|
+
<span className="visually-hidden">{children}</span>
|
|
8
|
+
);
|
|
9
|
+
|
|
10
|
+
export default VisuallyHidden;
|
package/tokens/dark.scss
ADDED
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
@use './primitives';
|
|
2
|
+
/* Figma: https://www.figma.com/file/WzKCwRY09zn4rzRVfY0YvdRt/sats-ds-styles?type=design&node-id=8481%3A40161&mode=design&t=DfsR6he5XyYQLucx-1 */
|
|
3
|
+
$background-primary-default: primitives.$black-100;
|
|
4
|
+
$background-primary-hover: primitives.$bright-blue-170;
|
|
5
|
+
$background-primary-selected: primitives.$black-100;
|
|
6
|
+
$background-secondary-default: primitives.$black-90;
|
|
7
|
+
$background-secondary-hover: primitives.$black-85;
|
|
8
|
+
$background-secondary-selected: primitives.$black-90;
|
|
9
|
+
$buttons-action-default: primitives.$white-0;
|
|
10
|
+
$buttons-action-disabled: primitives.$white-0;
|
|
11
|
+
$buttons-action-pressed: primitives.$white-0;
|
|
12
|
+
$buttons-cta-default: primitives.$coral-100;
|
|
13
|
+
$buttons-cta-disabled: primitives.$black-80;
|
|
14
|
+
$buttons-cta-hover: primitives.$coral-120;
|
|
15
|
+
$buttons-clean-default: primitives.$white-100;
|
|
16
|
+
$buttons-clean-disabled: primitives.$white-10;
|
|
17
|
+
$buttons-clean-hover: primitives.$white-90;
|
|
18
|
+
$buttons-clean-secondary-default: primitives.$white-15;
|
|
19
|
+
$buttons-clean-secondary-disabled: primitives.$white-5;
|
|
20
|
+
$buttons-clean-secondary-hover: primitives.$white-10;
|
|
21
|
+
$buttons-clean-secondary-outline: primitives.$white-100;
|
|
22
|
+
$buttons-clean-secondary-outline-disabled: primitives.$white-40;
|
|
23
|
+
$buttons-complete-default: primitives.$coral-100;
|
|
24
|
+
$buttons-complete-disabled: primitives.$black-80;
|
|
25
|
+
$buttons-complete-hover: primitives.$coral-120;
|
|
26
|
+
$buttons-destructive-default: primitives.$chili-red-80;
|
|
27
|
+
$buttons-destructive-disabled: primitives.$black-80;
|
|
28
|
+
$buttons-destructive-hover: primitives.$chili-red-60;
|
|
29
|
+
$buttons-destructive-outlined-default: primitives.$chili-red-80;
|
|
30
|
+
$buttons-destructive-outlined-disabled: primitives.$black-50;
|
|
31
|
+
$buttons-destructive-outlined-hover: primitives.$chili-red-170;
|
|
32
|
+
$buttons-fixed-action-default: primitives.$white-0;
|
|
33
|
+
$buttons-fixed-action-disabled: primitives.$white-0;
|
|
34
|
+
$buttons-fixed-action-pressed: primitives.$white-0;
|
|
35
|
+
$buttons-fixed-link-default: primitives.$white-0;
|
|
36
|
+
$buttons-fixed-link-disabled: primitives.$white-0;
|
|
37
|
+
$buttons-fixed-link-hover: primitives.$bright-blue-160;
|
|
38
|
+
$buttons-link-default: primitives.$white-0;
|
|
39
|
+
$buttons-link-disabled: primitives.$white-0;
|
|
40
|
+
$buttons-link-hover: primitives.$bright-blue-160;
|
|
41
|
+
$buttons-primary-default: primitives.$white-100;
|
|
42
|
+
$buttons-primary-disabled: primitives.$white-10;
|
|
43
|
+
$buttons-primary-hover: primitives.$bright-blue-20;
|
|
44
|
+
$buttons-secondary-default: primitives.$white-100;
|
|
45
|
+
$buttons-secondary-disabled: primitives.$black-80;
|
|
46
|
+
$buttons-secondary-hover: primitives.$bright-blue-160;
|
|
47
|
+
$buttons-waiting-list-default: primitives.$egyptian-purple-80;
|
|
48
|
+
$buttons-waiting-list-disabled: primitives.$black-80;
|
|
49
|
+
$buttons-waiting-list-hover: primitives.$egyptian-purple-100;
|
|
50
|
+
$buttons-waiting-list-outlined-default: primitives.$egyptian-purple-80;
|
|
51
|
+
$buttons-waiting-list-outlined-disabled: primitives.$black-50;
|
|
52
|
+
$buttons-waiting-list-outlined-hover: primitives.$egyptian-purple-160;
|
|
53
|
+
$fixed-background-primary-default: primitives.$blue-105;
|
|
54
|
+
$fixed-background-primary-hover: primitives.$blue-100;
|
|
55
|
+
$fixed-background-primary-selected: primitives.$blue-90;
|
|
56
|
+
$fixed-background-secondary-default: primitives.$blue-100;
|
|
57
|
+
$fixed-background-secondary-hover: primitives.$blue-90;
|
|
58
|
+
$fixed-background-secondary-selected: primitives.$blue-grey-80;
|
|
59
|
+
$fixed-surface-primary-default: primitives.$blue-100;
|
|
60
|
+
$fixed-surface-primary-hover: primitives.$blue-90;
|
|
61
|
+
$fixed-surface-primary-selected: primitives.$blue-grey-80;
|
|
62
|
+
$fixed-surface-secondary-default: primitives.$blue-grey-80;
|
|
63
|
+
$fixed-surface-secondary-hover: primitives.$blue-90;
|
|
64
|
+
$fixed-surface-secondary-selected: primitives.$blue-grey-80;
|
|
65
|
+
$ge-graphical-elements-1: primitives.$white-100;
|
|
66
|
+
$ge-graphical-elements-2: primitives.$white-90;
|
|
67
|
+
$ge-graphical-elements-3: primitives.$white-70;
|
|
68
|
+
$ge-graphical-elements-4: primitives.$black-90;
|
|
69
|
+
$ge-shadow: primitives.$black-100;
|
|
70
|
+
$ge-tabs: primitives.$black-90;
|
|
71
|
+
$ge-badge-primary: primitives.$coral-90;
|
|
72
|
+
$ge-badge-secondary: primitives.$blue-10;
|
|
73
|
+
$ge-badge-tertiary: primitives.$black-80;
|
|
74
|
+
$ge-border-default: primitives.$black-70;
|
|
75
|
+
$ge-border-focused: primitives.$white-40;
|
|
76
|
+
$ge-chips-selected-default: primitives.$white-100;
|
|
77
|
+
$ge-chips-selected-disabled: primitives.$black-80;
|
|
78
|
+
$ge-chips-selected-hover: primitives.$white-80;
|
|
79
|
+
$ge-chips-unselected-default: primitives.$white-85;
|
|
80
|
+
$ge-chips-unselected-disabled: primitives.$white-10;
|
|
81
|
+
$ge-chips-unselected-hover: primitives.$white-10;
|
|
82
|
+
$ge-divider-alternate: primitives.$white-40;
|
|
83
|
+
$ge-divider-default: primitives.$black-80;
|
|
84
|
+
$ge-divider-fixed: primitives.$white-20;
|
|
85
|
+
$ge-divider-fixed-alternate: primitives.$white-40;
|
|
86
|
+
$ge-fixed-badge-primary: primitives.$coral-120;
|
|
87
|
+
$ge-fixed-badge-secondary: primitives.$bright-blue-10;
|
|
88
|
+
$ge-fixed-badge-tertiary: primitives.$blue-grey-80;
|
|
89
|
+
$ge-fixed-chips-selected-default: primitives.$coral-120;
|
|
90
|
+
$ge-fixed-chips-selected-disabled: primitives.$blue-70;
|
|
91
|
+
$ge-fixed-chips-selected-hover: primitives.$coral-130;
|
|
92
|
+
$ge-fixed-chips-unselected-default: primitives.$white-100;
|
|
93
|
+
$ge-fixed-chips-unselected-disabled: primitives.$white-50;
|
|
94
|
+
$ge-fixed-chips-unselected-hover: primitives.$black-o20;
|
|
95
|
+
$ge-fixed-progress-bar-background: primitives.$white-40;
|
|
96
|
+
$ge-fixed-progress-bar-indicator-alternate: primitives.$blue-10;
|
|
97
|
+
$ge-fixed-progress-bar-indicator-default: primitives.$coral-90;
|
|
98
|
+
$ge-fixed-progress-bar-indicator-disabled: primitives.$white-40;
|
|
99
|
+
$ge-fixed-selector-selected-default: primitives.$coral-90;
|
|
100
|
+
$ge-fixed-selector-selected-disabled: primitives.$coral-130;
|
|
101
|
+
$ge-fixed-selector-selected-bg-default: primitives.$coral-170;
|
|
102
|
+
$ge-fixed-selector-selected-bg-disabled: primitives.$coral-190;
|
|
103
|
+
$ge-fixed-selector-unselected-default: primitives.$white-100;
|
|
104
|
+
$ge-fixed-selector-unselected-disabled: primitives.$white-50;
|
|
105
|
+
$ge-fixed-tabs-background-default: primitives.$white-0;
|
|
106
|
+
$ge-fixed-tabs-background-disabled: primitives.$blue-grey-80;
|
|
107
|
+
$ge-fixed-tabs-background-hover: primitives.$white-15;
|
|
108
|
+
$ge-fixed-tabs-selected-default: primitives.$coral-100;
|
|
109
|
+
$ge-fixed-tabs-selected-disabled: primitives.$blue-70;
|
|
110
|
+
$ge-fixed-tabs-selected-hover: primitives.$coral-120;
|
|
111
|
+
$ge-fixed-tabs-unselected-default: primitives.$white-20;
|
|
112
|
+
$ge-fixed-tabs-unselected-disabled: primitives.$white-10;
|
|
113
|
+
$ge-fixed-tabs-unselected-hover: primitives.$white-40;
|
|
114
|
+
$ge-graphs-bar-primary: primitives.$coral-90;
|
|
115
|
+
$ge-graphs-bar-secondary: primitives.$blue-40;
|
|
116
|
+
$ge-graphs-bar-background-primary: primitives.$black-80;
|
|
117
|
+
$ge-graphs-bar-background-secondary: primitives.$black-70;
|
|
118
|
+
$ge-graphs-trend-downwards: primitives.$cardinal-100;
|
|
119
|
+
$ge-graphs-trend-neutral: primitives.$coral-130;
|
|
120
|
+
$ge-graphs-trend-upwards: primitives.$spring-green-80;
|
|
121
|
+
$ge-icons-attention: primitives.$gold-100;
|
|
122
|
+
$ge-icons-delete: primitives.$chili-red-80;
|
|
123
|
+
$ge-icons-fixed: primitives.$white-100;
|
|
124
|
+
$ge-icons-negative: primitives.$cardinal-100;
|
|
125
|
+
$ge-icons-positive: primitives.$spring-green-80;
|
|
126
|
+
$ge-icons-primary: primitives.$white-100;
|
|
127
|
+
$ge-icons-secondary: primitives.$black-20;
|
|
128
|
+
$ge-icons-waiting-list: primitives.$egyptian-purple-80;
|
|
129
|
+
$ge-indicator-tags-attention-alternate: primitives.$gold-170;
|
|
130
|
+
$ge-indicator-tags-attention-default: primitives.$gold-80;
|
|
131
|
+
$ge-indicator-tags-featured-alternate: primitives.$coral-170;
|
|
132
|
+
$ge-indicator-tags-featured-default: primitives.$coral-90;
|
|
133
|
+
$ge-indicator-tags-information-alternate: primitives.$bright-blue-160;
|
|
134
|
+
$ge-indicator-tags-information-default: primitives.$bright-blue-100;
|
|
135
|
+
$ge-indicator-tags-negative-alternate: primitives.$cardinal-170;
|
|
136
|
+
$ge-indicator-tags-negative-default: primitives.$cardinal-100;
|
|
137
|
+
$ge-indicator-tags-neutral-alternate: primitives.$black-90;
|
|
138
|
+
$ge-indicator-tags-neutral-default: primitives.$black-60;
|
|
139
|
+
$ge-indicator-tags-positive-alternate: primitives.$spring-green-170;
|
|
140
|
+
$ge-indicator-tags-positive-default: primitives.$spring-green-100;
|
|
141
|
+
$ge-indicators-attention-alternate: primitives.$gold-170;
|
|
142
|
+
$ge-indicators-attention-default: primitives.$gold-100;
|
|
143
|
+
$ge-indicators-negative-alternate: primitives.$cardinal-170;
|
|
144
|
+
$ge-indicators-negative-default: primitives.$cardinal-100;
|
|
145
|
+
$ge-indicators-neutral-alternate: primitives.$black-80;
|
|
146
|
+
$ge-indicators-neutral-default: primitives.$blue-40;
|
|
147
|
+
$ge-indicators-positive-alternate: primitives.$spring-green-170;
|
|
148
|
+
$ge-indicators-positive-default: primitives.$spring-green-80;
|
|
149
|
+
$ge-nav-bar-not-selected: primitives.$white-100;
|
|
150
|
+
$ge-nav-bar-selected: primitives.$white-100;
|
|
151
|
+
$ge-progress-bar-background: primitives.$black-70;
|
|
152
|
+
$ge-progress-bar-indicator-alternate: primitives.$blue-10;
|
|
153
|
+
$ge-progress-bar-indicator-default: primitives.$coral-90;
|
|
154
|
+
$ge-progress-bar-indicator-disabled: primitives.$white-20;
|
|
155
|
+
$ge-rewards-blue: primitives.$bright-blue-100;
|
|
156
|
+
$ge-rewards-gold: primitives.$gold-110;
|
|
157
|
+
$ge-rewards-platinum: primitives.$blue-40;
|
|
158
|
+
$ge-rewards-silver: primitives.$blue-20;
|
|
159
|
+
$ge-selector-primary-selected-alternate: primitives.$coral-190;
|
|
160
|
+
$ge-selector-primary-selected-default: primitives.$coral-90;
|
|
161
|
+
$ge-selector-primary-selected-disabled: primitives.$coral-130;
|
|
162
|
+
$ge-selector-primary-selected-hover: primitives.$coral-100;
|
|
163
|
+
$ge-selector-primary-selected-bg-default: primitives.$coral-170;
|
|
164
|
+
$ge-selector-primary-selected-bg-disabled: primitives.$coral-190;
|
|
165
|
+
$ge-selector-primary-unselected-default: primitives.$white-100;
|
|
166
|
+
$ge-selector-primary-unselected-disabled: primitives.$white-10;
|
|
167
|
+
$ge-selector-primary-unselected-hover: primitives.$coral-190;
|
|
168
|
+
$ge-selector-primary-unselected-bg-default: primitives.$white-0;
|
|
169
|
+
$ge-selector-primary-unselected-bg-disabled: primitives.$white-0;
|
|
170
|
+
$ge-selector-secondary-selected-default: primitives.$white-100;
|
|
171
|
+
$ge-selector-secondary-selected-disabled: primitives.$white-20;
|
|
172
|
+
$ge-selector-secondary-selected-bg-default: primitives.$bright-blue-160;
|
|
173
|
+
$ge-selector-secondary-selected-bg-disabled: primitives.$bright-blue-170;
|
|
174
|
+
$ge-selector-secondary-unselected-default: primitives.$white-100;
|
|
175
|
+
$ge-selector-secondary-unselected-disabled: primitives.$white-10;
|
|
176
|
+
$ge-selector-secondary-unselected-bg-default: primitives.$white-0;
|
|
177
|
+
$ge-selector-secondary-unselected-bg-disabled: primitives.$white-0;
|
|
178
|
+
$ge-signal-error: primitives.$cardinal-100;
|
|
179
|
+
$ge-signal-neutral: primitives.$blue-40;
|
|
180
|
+
$ge-signal-success: primitives.$spring-green-80;
|
|
181
|
+
$ge-signal-waiting-list: primitives.$egyptian-purple-80;
|
|
182
|
+
$ge-signal-warning: primitives.$gold-100;
|
|
183
|
+
$ge-signal-border-error: primitives.$cardinal-30;
|
|
184
|
+
$ge-signal-border-featured: primitives.$coral-40;
|
|
185
|
+
$ge-signal-border-information: primitives.$bright-blue-20;
|
|
186
|
+
$ge-signal-border-neutral: primitives.$black-20;
|
|
187
|
+
$ge-signal-border-success: primitives.$spring-green-30;
|
|
188
|
+
$ge-signal-border-waiting-list: primitives.$egyptian-purple-60;
|
|
189
|
+
$ge-signal-border-warning: primitives.$gold-30;
|
|
190
|
+
$ge-skeleton-default: primitives.$black-80;
|
|
191
|
+
$ge-tabs-background-default: primitives.$white-0;
|
|
192
|
+
$ge-tabs-background-disabled: primitives.$black-95;
|
|
193
|
+
$ge-tabs-background-hover: primitives.$coral-190;
|
|
194
|
+
$ge-tabs-selected-default: primitives.$coral-100;
|
|
195
|
+
$ge-tabs-selected-disabled: primitives.$coral-170;
|
|
196
|
+
$ge-tabs-selected-hover: primitives.$coral-120;
|
|
197
|
+
$ge-tabs-unselected-default: primitives.$black-80;
|
|
198
|
+
$ge-tabs-unselected-disabled: primitives.$black-90;
|
|
199
|
+
$ge-tabs-unselected-hover: primitives.$black-70;
|
|
200
|
+
$ge-tags-featured: primitives.$coral-90;
|
|
201
|
+
$ge-tags-primary: primitives.$blue-10;
|
|
202
|
+
$ge-tags-secondary: primitives.$black-80;
|
|
203
|
+
$ge-toggle-interactive-element: primitives.$white-100;
|
|
204
|
+
$ge-toggle-selected-default: primitives.$coral-90;
|
|
205
|
+
$ge-toggle-selected-disabled: primitives.$coral-130;
|
|
206
|
+
$ge-toggle-unselected-default: primitives.$black-70;
|
|
207
|
+
$ge-toggle-unselected-disabled: primitives.$black-80;
|
|
208
|
+
$ge-toggle-unselected-interactive-element: primitives.$black-100;
|
|
209
|
+
$ge-workouts-bootcamp: primitives.$tropical-indigo-60;
|
|
210
|
+
$ge-workouts-gx: primitives.$salmon-pink-60;
|
|
211
|
+
$ge-workouts-gym-floor: primitives.$tangerine-60;
|
|
212
|
+
$ge-workouts-other: primitives.$celadon-60;
|
|
213
|
+
$ge-workouts-pt: primitives.$uranian-blue-60;
|
|
214
|
+
$ge-workouts-treatments: primitives.$caribbean-current-60;
|
|
215
|
+
$on-background-primary-alternate: primitives.$black-20;
|
|
216
|
+
$on-background-primary-default: primitives.$white-100;
|
|
217
|
+
$on-background-primary-disabled: primitives.$black-50;
|
|
218
|
+
$on-background-secondary-alternate: primitives.$black-20;
|
|
219
|
+
$on-background-secondary-default: primitives.$white-100;
|
|
220
|
+
$on-background-secondary-disabled: primitives.$black-50;
|
|
221
|
+
$on-fixed-background-primary-alternate: primitives.$white-60;
|
|
222
|
+
$on-fixed-background-primary-default: primitives.$white-100;
|
|
223
|
+
$on-fixed-background-primary-disabled: primitives.$white-50;
|
|
224
|
+
$on-fixed-background-secondary-alternate: primitives.$white-60;
|
|
225
|
+
$on-fixed-background-secondary-default: primitives.$white-100;
|
|
226
|
+
$on-fixed-background-secondary-disabled: primitives.$white-50;
|
|
227
|
+
$on-fixed-surface-error: primitives.$cardinal-60;
|
|
228
|
+
$on-fixed-surface-featured: primitives.$coral-90;
|
|
229
|
+
$on-fixed-surface-information: primitives.$bright-blue-60;
|
|
230
|
+
$on-fixed-surface-neutral: primitives.$white-60;
|
|
231
|
+
$on-fixed-surface-success: primitives.$spring-green-60;
|
|
232
|
+
$on-fixed-surface-waiting-list: primitives.$egyptian-purple-40;
|
|
233
|
+
$on-fixed-surface-warning: primitives.$gold-60;
|
|
234
|
+
$on-fixed-surface-primary-alternate: primitives.$white-65;
|
|
235
|
+
$on-fixed-surface-primary-default: primitives.$white-100;
|
|
236
|
+
$on-fixed-surface-primary-disabled: primitives.$white-50;
|
|
237
|
+
$on-fixed-surface-secondary-alternate: primitives.$white-65;
|
|
238
|
+
$on-fixed-surface-secondary-default: primitives.$white-100;
|
|
239
|
+
$on-fixed-surface-secondary-disabled: primitives.$white-50;
|
|
240
|
+
$on-ge-on-badge-primary: primitives.$blue-100;
|
|
241
|
+
$on-ge-on-badge-secondary: primitives.$blue-100;
|
|
242
|
+
$on-ge-on-badge-tertiary: primitives.$white-100;
|
|
243
|
+
$on-ge-on-chips-selected-default: primitives.$blue-100;
|
|
244
|
+
$on-ge-on-chips-selected-disabled: primitives.$white-60;
|
|
245
|
+
$on-ge-on-chips-unselected-default: primitives.$white-100;
|
|
246
|
+
$on-ge-on-chips-unselected-disabled: primitives.$white-20;
|
|
247
|
+
$on-ge-on-fixed-badge-primary: primitives.$white-100;
|
|
248
|
+
$on-ge-on-fixed-badge-secondary: primitives.$blue-100;
|
|
249
|
+
$on-ge-on-fixed-badge-tertiary: primitives.$white-100;
|
|
250
|
+
$on-ge-on-fixed-chips-selected-default: primitives.$white-100;
|
|
251
|
+
$on-ge-on-fixed-chips-selected-disabled: primitives.$blue-40;
|
|
252
|
+
$on-ge-on-fixed-chips-unselected-default: primitives.$white-100;
|
|
253
|
+
$on-ge-on-fixed-chips-unselected-disabled: primitives.$white-50;
|
|
254
|
+
$on-ge-on-fixed-selector-selected-default: primitives.$blue-100;
|
|
255
|
+
$on-ge-on-fixed-selector-selected-disabled: primitives.$coral-170;
|
|
256
|
+
$on-ge-on-fixed-selector-unselected-default: primitives.$white-100;
|
|
257
|
+
$on-ge-on-fixed-selector-unselected-disabled: primitives.$white-50;
|
|
258
|
+
$on-ge-on-fixed-tabs-default: primitives.$white-100;
|
|
259
|
+
$on-ge-on-fixed-tabs-disabled: primitives.$white-50;
|
|
260
|
+
$on-ge-on-indicator-tags-attention-alternate: primitives.$gold-30;
|
|
261
|
+
$on-ge-on-indicator-tags-attention-default: primitives.$gold-170;
|
|
262
|
+
$on-ge-on-indicator-tags-featured-alternate: primitives.$coral-40;
|
|
263
|
+
$on-ge-on-indicator-tags-featured-default: primitives.$coral-170;
|
|
264
|
+
$on-ge-on-indicator-tags-information-alternate: primitives.$bright-blue-20;
|
|
265
|
+
$on-ge-on-indicator-tags-information-default: primitives.$white-100;
|
|
266
|
+
$on-ge-on-indicator-tags-negative-alternate: primitives.$cardinal-30;
|
|
267
|
+
$on-ge-on-indicator-tags-negative-default: primitives.$white-100;
|
|
268
|
+
$on-ge-on-indicator-tags-neutral-alternate: primitives.$black-20;
|
|
269
|
+
$on-ge-on-indicator-tags-neutral-default: primitives.$white-100;
|
|
270
|
+
$on-ge-on-indicator-tags-positive-alternate: primitives.$spring-green-30;
|
|
271
|
+
$on-ge-on-indicator-tags-positive-default: primitives.$white-100;
|
|
272
|
+
$on-ge-on-rewards-default: primitives.$blue-100;
|
|
273
|
+
$on-ge-on-selector-primary-selected-alternate: primitives.$white-100;
|
|
274
|
+
$on-ge-on-selector-primary-selected-default: primitives.$blue-100;
|
|
275
|
+
$on-ge-on-selector-primary-selected-disabled: primitives.$white-60;
|
|
276
|
+
$on-ge-on-selector-primary-unselected-default: primitives.$white-100;
|
|
277
|
+
$on-ge-on-selector-primary-unselected-disabled: primitives.$white-20;
|
|
278
|
+
$on-ge-on-selector-secondary-selected-default: primitives.$blue-100;
|
|
279
|
+
$on-ge-on-selector-secondary-selected-disabled: primitives.$white-60;
|
|
280
|
+
$on-ge-on-selector-secondary-unselected-default: primitives.$white-100;
|
|
281
|
+
$on-ge-on-selector-secondary-unselected-disabled: primitives.$white-20;
|
|
282
|
+
$on-ge-on-tabs-default: primitives.$white-100;
|
|
283
|
+
$on-ge-on-tabs-disabled: primitives.$black-40;
|
|
284
|
+
$on-ge-on-tags-featured-default: primitives.$coral-170;
|
|
285
|
+
$on-ge-on-tags-primary-default: primitives.$blue-100;
|
|
286
|
+
$on-ge-on-tags-secondary-default: primitives.$white-100;
|
|
287
|
+
$on-ge-on-workouts-bootcamp: primitives.$tropical-indigo-160;
|
|
288
|
+
$on-ge-on-workouts-gx: primitives.$salmon-pink-180;
|
|
289
|
+
$on-ge-on-workouts-gymfloor: primitives.$tangerine-160;
|
|
290
|
+
$on-ge-on-workouts-other: primitives.$celadon-160;
|
|
291
|
+
$on-ge-on-workouts-pt: primitives.$uranian-blue-160;
|
|
292
|
+
$on-ge-on-workouts-treatments: primitives.$caribbean-current-180;
|
|
293
|
+
$on-signal-surface-error-alternate: primitives.$cardinal-60;
|
|
294
|
+
$on-signal-surface-error-default: primitives.$white-100;
|
|
295
|
+
$on-signal-surface-featured-alternate: primitives.$coral-90;
|
|
296
|
+
$on-signal-surface-featured-default: primitives.$white-100;
|
|
297
|
+
$on-signal-surface-information-alternate: primitives.$bright-blue-60;
|
|
298
|
+
$on-signal-surface-information-default: primitives.$white-100;
|
|
299
|
+
$on-signal-surface-neutral-alternate: primitives.$black-40;
|
|
300
|
+
$on-signal-surface-neutral-default: primitives.$white-100;
|
|
301
|
+
$on-signal-surface-success-alternate: primitives.$spring-green-80;
|
|
302
|
+
$on-signal-surface-success-default: primitives.$white-100;
|
|
303
|
+
$on-signal-surface-waiting-list-alternate: primitives.$egyptian-purple-60;
|
|
304
|
+
$on-signal-surface-waiting-list-default: primitives.$white-100;
|
|
305
|
+
$on-signal-surface-warning-alternate: primitives.$gold-80;
|
|
306
|
+
$on-signal-surface-warning-default: primitives.$white-100;
|
|
307
|
+
$on-surface-error: primitives.$cardinal-60;
|
|
308
|
+
$on-surface-featured: primitives.$coral-90;
|
|
309
|
+
$on-surface-information: primitives.$bright-blue-60;
|
|
310
|
+
$on-surface-neutral: primitives.$black-40;
|
|
311
|
+
$on-surface-success: primitives.$spring-green-80;
|
|
312
|
+
$on-surface-waiting-list: primitives.$egyptian-purple-60;
|
|
313
|
+
$on-surface-warning: primitives.$gold-80;
|
|
314
|
+
$on-surface-primary-alternate: primitives.$black-20;
|
|
315
|
+
$on-surface-primary-default: primitives.$white-100;
|
|
316
|
+
$on-surface-primary-disabled: primitives.$black-50;
|
|
317
|
+
$on-surface-secondary-alternate: primitives.$black-20;
|
|
318
|
+
$on-surface-secondary-default: primitives.$white-100;
|
|
319
|
+
$on-surface-secondary-disabled: primitives.$black-50;
|
|
320
|
+
$on-workout-surface-bootcamp-alternate: primitives.$tropical-indigo-100;
|
|
321
|
+
$on-workout-surface-bootcamp-default: primitives.$white-100;
|
|
322
|
+
$on-workout-surface-gx-alternate: primitives.$salmon-pink-100;
|
|
323
|
+
$on-workout-surface-gx-default: primitives.$white-100;
|
|
324
|
+
$on-workout-surface-gymfloor-alternate: primitives.$tangerine-100;
|
|
325
|
+
$on-workout-surface-gymfloor-default: primitives.$white-100;
|
|
326
|
+
$on-workout-surface-other-alternate: primitives.$celadon-100;
|
|
327
|
+
$on-workout-surface-other-default: primitives.$white-100;
|
|
328
|
+
$on-workout-surface-pt-alternate: primitives.$uranian-blue-100;
|
|
329
|
+
$on-workout-surface-pt-default: primitives.$white-100;
|
|
330
|
+
$on-workout-surface-treatments-alternate: primitives.$caribbean-current-60;
|
|
331
|
+
$on-workout-surface-treatments-default: primitives.$white-100;
|
|
332
|
+
$on-buttons-on-action-default: primitives.$coral-100;
|
|
333
|
+
$on-buttons-on-action-disabled: primitives.$black-50;
|
|
334
|
+
$on-buttons-on-action-pressed: primitives.$coral-90;
|
|
335
|
+
$on-buttons-on-cta-default: primitives.$white-100;
|
|
336
|
+
$on-buttons-on-cta-disabled: primitives.$white-70;
|
|
337
|
+
$on-buttons-on-clean-default: primitives.$blue-100;
|
|
338
|
+
$on-buttons-on-clean-disabled: primitives.$white-50;
|
|
339
|
+
$on-buttons-on-clean-secondary-default: primitives.$white-100;
|
|
340
|
+
$on-buttons-on-clean-secondary-disabled: primitives.$white-70;
|
|
341
|
+
$on-buttons-on-complete-default: primitives.$white-100;
|
|
342
|
+
$on-buttons-on-complete-disabled: primitives.$white-70;
|
|
343
|
+
$on-buttons-on-destructive-default: primitives.$white-100;
|
|
344
|
+
$on-buttons-on-destructive-disabled: primitives.$black-50;
|
|
345
|
+
$on-buttons-on-destructive-outlined-default: primitives.$chili-red-80;
|
|
346
|
+
$on-buttons-on-destructive-outlined-disabled: primitives.$black-50;
|
|
347
|
+
$on-buttons-on-destructive-outlined-hover: primitives.$chili-red-60;
|
|
348
|
+
$on-buttons-on-fixed-action-default: primitives.$coral-100;
|
|
349
|
+
$on-buttons-on-fixed-action-disabled: primitives.$white-50;
|
|
350
|
+
$on-buttons-on-fixed-action-pressed: primitives.$coral-90;
|
|
351
|
+
$on-buttons-on-fixed-link-default: primitives.$bright-blue-80;
|
|
352
|
+
$on-buttons-on-fixed-link-disabled: primitives.$white-50;
|
|
353
|
+
$on-buttons-on-fixed-link-hover: primitives.$bright-blue-100;
|
|
354
|
+
$on-buttons-on-link-default: primitives.$bright-blue-80;
|
|
355
|
+
$on-buttons-on-link-disabled: primitives.$black-50;
|
|
356
|
+
$on-buttons-on-link-hover: primitives.$bright-blue-100;
|
|
357
|
+
$on-buttons-on-primary-default: primitives.$blue-100;
|
|
358
|
+
$on-buttons-on-primary-disabled: primitives.$black-50;
|
|
359
|
+
$on-buttons-on-secondary-default: primitives.$white-100;
|
|
360
|
+
$on-buttons-on-secondary-disabled: primitives.$black-50;
|
|
361
|
+
$on-buttons-on-waiting-list-default: primitives.$white-100;
|
|
362
|
+
$on-buttons-on-waiting-list-disabled: primitives.$black-50;
|
|
363
|
+
$on-buttons-on-waiting-list-outlined-default: primitives.$egyptian-purple-80;
|
|
364
|
+
$on-buttons-on-waiting-list-outlined-disabled: primitives.$black-50;
|
|
365
|
+
$on-buttons-on-waiting-list-outlined-hover: primitives.$egyptian-purple-100;
|
|
366
|
+
$signal-surface-error: primitives.$cardinal-170;
|
|
367
|
+
$signal-surface-featured: primitives.$coral-190;
|
|
368
|
+
$signal-surface-information: primitives.$bright-blue-160;
|
|
369
|
+
$signal-surface-neutral: primitives.$black-90;
|
|
370
|
+
$signal-surface-success: primitives.$spring-green-170;
|
|
371
|
+
$signal-surface-waiting-list: primitives.$egyptian-purple-160;
|
|
372
|
+
$signal-surface-warning: primitives.$gold-170;
|
|
373
|
+
$surface-primary-default: primitives.$black-85;
|
|
374
|
+
$surface-primary-disabled: primitives.$black-95;
|
|
375
|
+
$surface-primary-hover: primitives.$bright-blue-170;
|
|
376
|
+
$surface-primary-selected: primitives.$bright-blue-160;
|
|
377
|
+
$surface-secondary-default: primitives.$black-90;
|
|
378
|
+
$surface-secondary-disabled: primitives.$black-100;
|
|
379
|
+
$surface-secondary-hover: primitives.$black-85;
|
|
380
|
+
$surface-secondary-selected: primitives.$black-90;
|
|
381
|
+
$workout-surface-bootcamp: primitives.$tropical-indigo-180;
|
|
382
|
+
$workout-surface-bootcamp-hover: primitives.$tropical-indigo-160;
|
|
383
|
+
$workout-surface-gx: primitives.$salmon-pink-180;
|
|
384
|
+
$workout-surface-gx-hover: primitives.$salmon-pink-160;
|
|
385
|
+
$workout-surface-gymfloor: primitives.$tangerine-180;
|
|
386
|
+
$workout-surface-gymfloor-hover: primitives.$tangerine-160;
|
|
387
|
+
$workout-surface-other: primitives.$celadon-180;
|
|
388
|
+
$workout-surface-other-hover: primitives.$celadon-160;
|
|
389
|
+
$workout-surface-pt: primitives.$uranian-blue-180;
|
|
390
|
+
$workout-surface-pt-hover: primitives.$uranian-blue-160;
|
|
391
|
+
$workout-surface-treatments: primitives.$caribbean-current-180;
|
|
392
|
+
$workout-surface-treatments-hover: primitives.$caribbean-current-160;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
3
|
+
$primary: #2676b0;
|
|
4
|
+
$primary-hover: #308acc;
|
|
5
|
+
$primary-disabled: #272729;
|
|
6
|
+
|
|
7
|
+
$primary-silver: #87878a;
|
|
8
|
+
$primary-silver-hover: #939396;
|
|
9
|
+
$primary-silver-disabled: #272729;
|
|
10
|
+
|
|
11
|
+
$primary-gold: #d4a852;
|
|
12
|
+
$primary-gold-hover: #d8b163;
|
|
13
|
+
$primary-gold-disabled: #272729;
|
|
14
|
+
|
|
15
|
+
$primary-platinum: #87878a;
|
|
16
|
+
$primary-platinum-hover: #939396;
|
|
17
|
+
$primary-platinum-disabled: #272729;
|
|
18
|
+
|
|
19
|
+
$secondary: #3c3c41;
|
|
20
|
+
$secondary-hover: #47474d;
|
|
21
|
+
$secondary-disabled: #272729;
|
|
22
|
+
|
|
23
|
+
$clean: #fff;
|
|
24
|
+
$clean-hover: color.adjust(#fff, $alpha: -0.1);
|
|
25
|
+
$clean-disabled: color.adjust(#fff, $alpha: -0.9);
|
|
26
|
+
|
|
27
|
+
$clean-secondary: color.adjust(#fff, $alpha: -0.85);
|
|
28
|
+
$clean-secondary-hover: color.adjust(#fff, $alpha: -0.9);
|
|
29
|
+
$clean-secondary-disabled: color.adjust(#fff, $alpha: -0.95);
|
|
30
|
+
|
|
31
|
+
$cta: #e16259;
|
|
32
|
+
$cta-hover: #cd6354;
|
|
33
|
+
$cta-disabled: #353535;
|
|
34
|
+
$cta-non-text: #fd7459;
|
|
35
|
+
|
|
36
|
+
$selection-blue: #9ec3ff;
|
|
37
|
+
$selection-silver: #cad1d8;
|
|
38
|
+
$selection-gold: #d4a852;
|
|
39
|
+
$selection-platinum: #929aa1;
|
|
40
|
+
|
|
41
|
+
$action: #549bde;
|
|
42
|
+
$action-hover: #75b5f2;
|
|
43
|
+
$action-disabled: #272729;
|
|
44
|
+
|
|
45
|
+
$navigation-blue: #549bde;
|
|
46
|
+
$navigation-silver: #f0f4f9;
|
|
47
|
+
$navigation-gold: #d4a852;
|
|
48
|
+
$navigation-platinum: #f2f9ff;
|
|
49
|
+
|
|
50
|
+
$waitlist: #686db9;
|
|
51
|
+
$waitlist-hover: #484ba2;
|
|
52
|
+
$waitlist-text: #a0a5f1;
|
|
53
|
+
$waitlist-disabled: #686db9;
|
|
54
|
+
$waitlist-background: #2e2f46;
|
|
55
|
+
|
|
56
|
+
$signal-success: #8bbf9b;
|
|
57
|
+
$signal-success-text: #8bbf9b;
|
|
58
|
+
$signal-success-background: #424846;
|
|
59
|
+
$signal-warning: #fcd36c;
|
|
60
|
+
$signal-warning-text: #fcd36c;
|
|
61
|
+
$signal-warning-background: #484641;
|
|
62
|
+
$signal-error: #e9698b;
|
|
63
|
+
$signal-error-text: #e9698b;
|
|
64
|
+
$signal-error-background: #4a4444;
|
|
65
|
+
$signal-delete: #e5766e;
|
|
66
|
+
$signal-delete-text: #e5766e;
|
|
67
|
+
$signal-delete-background: #4b4343;
|
|
68
|
+
|
|
69
|
+
$workout-pt: #6fc2ff;
|
|
70
|
+
$workout-gx: #ee90f0;
|
|
71
|
+
$workout-gymfloor: #e9698b;
|
|
72
|
+
$workout-other: #56c09d;
|
|
73
|
+
|
|
74
|
+
$ui-pressed: fuchsia; // NOTE: This is missing from Figma
|
|
75
|
+
$ui-tabs: #191c1e;
|
|
76
|
+
$ui-shimmer: #333438;
|
|
77
|
+
$ui-border: color.adjust(#fff, $alpha: -0.91);
|
|
78
|
+
$ui-shadow: #000000;
|
|
79
|
+
$ui-graphical-elements-1: #ffffff;
|
|
80
|
+
$ui-graphical-elements-2: color.adjust(#fff, $alpha: -0.1);
|
|
81
|
+
$ui-graphical-elements-3: color.adjust(#fff, $alpha: -0.3);
|
|
82
|
+
$ui-graphical-elements-4: #191c1e;
|
|
83
|
+
$ui-graphical-elements-5: #fd7459;
|
|
84
|
+
$ui-graphical-elements-6: #8bbf9b;
|
|
85
|
+
$ui-graphical-elements-7: #686db9;
|
|
86
|
+
|
|
87
|
+
$background-primary: #000;
|
|
88
|
+
$background-secondary: #000;
|
|
89
|
+
$background-surface-primary: #282e34;
|
|
90
|
+
$background-surface-secondary: #282e34;
|
|
91
|
+
|
|
92
|
+
$on-primary: #fff;
|
|
93
|
+
$on-primary-disabled: color.adjust(#fff, $alpha: -0.32);
|
|
94
|
+
|
|
95
|
+
$on-secondary: #fff;
|
|
96
|
+
$on-secondary-disabled: color.adjust(#fff, $alpha: -0.32);
|
|
97
|
+
|
|
98
|
+
$on-clean: #0e2133;
|
|
99
|
+
$on-clean-disabled: #9fa6ad;
|
|
100
|
+
|
|
101
|
+
$on-clean-secondary: #fff;
|
|
102
|
+
$on-clean-secondary-disabled: color.adjust(#fff, $alpha: -0.32);
|
|
103
|
+
|
|
104
|
+
$on-cta: #fff;
|
|
105
|
+
$on-cta-disabled: color.adjust(#fff, $alpha: -0.32);
|
|
106
|
+
$on-cta-non-text: #fff;
|
|
107
|
+
|
|
108
|
+
$on-signal: #fff;
|
|
109
|
+
|
|
110
|
+
$on-waitlist: #fff;
|
|
111
|
+
$on-waitlist-disabled: color.adjust(#fff, $alpha: -0.32);
|
|
112
|
+
|
|
113
|
+
$on-background-primary: #fff;
|
|
114
|
+
$on-background-secondary: color.adjust(#fff, $alpha: -0.32);
|
|
115
|
+
$on-background-disabled: color.adjust(#fff, $alpha: -0.6);
|
|
116
|
+
$on-background-enabled-on: #fd7459;
|
|
117
|
+
$on-background-enabled-off: #fff;
|
|
118
|
+
$on-background-disabled-on: color.adjust(#fd7459, $alpha: -0.3);
|
|
119
|
+
$on-background-disabled-off: color.adjust(#fff, $alpha: -0.6);
|
|
120
|
+
$on-background-element-on: fuchsia; // NOTE: This is missing from Figma
|
|
121
|
+
$on-background-element-off: fuchsia; // NOTE: This is missing from Figma
|
|
122
|
+
|
|
123
|
+
$on-surface-primary: #fff;
|
|
124
|
+
$on-surface-secondary: color.adjust(#fff, $alpha: -0.32);
|
|
125
|
+
$on-surface-disabled: color.adjust(#fff, $alpha: -0.6);
|
|
126
|
+
$on-surface-enabled-on: #fd7459;
|
|
127
|
+
$on-surface-enabled-off: #fff;
|
|
128
|
+
$on-surface-disabled-on: color.adjust(#fd7459, $alpha: -0.3);
|
|
129
|
+
$on-surface-disabled-off: color.adjust(#fff, $alpha: -0.6);
|
|
130
|
+
$on-surface-element-on: fuchsia; // NOTE: This is missing from Figma
|
|
131
|
+
$on-surface-element-off: fuchsia; // NOTE: This is missing from Figma
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
|
|
3
|
+
$levels: (
|
|
4
|
+
1: (
|
|
5
|
+
0px 0px 4px rgba(black, 0.08),
|
|
6
|
+
0px 1px 2px rgba(black, 0.06),
|
|
7
|
+
0px 1px 4px rgba(black, 0.14)
|
|
8
|
+
),
|
|
9
|
+
2: (
|
|
10
|
+
0px 1px 1px rgba(black, 0.08),
|
|
11
|
+
0px 1px 5px rgba(black, 0.12),
|
|
12
|
+
0px 2px 9px rgba(black, 0.1)
|
|
13
|
+
),
|
|
14
|
+
3: (
|
|
15
|
+
0px 3px 3px rgba(black, 0.08),
|
|
16
|
+
0px 3px 4px rgba(black, 0.1),
|
|
17
|
+
0px 1px 10px rgba(black, 0.08)
|
|
18
|
+
),
|
|
19
|
+
4: (
|
|
20
|
+
0px 1px 10px rgba(black, 0.08),
|
|
21
|
+
0px 4px 5px rgba(black, 0.1),
|
|
22
|
+
0px 2px 4px rgba(black, 0.1)
|
|
23
|
+
),
|
|
24
|
+
6: (
|
|
25
|
+
0px 1px 18px rgba(black, 0.08),
|
|
26
|
+
0px 6px 10px rgba(black, 0.1),
|
|
27
|
+
0px 3px 5px rgba(black, 0.1)
|
|
28
|
+
),
|
|
29
|
+
8: (
|
|
30
|
+
0px 3px 14px rgba(black, 0.08),
|
|
31
|
+
0px 8px 10px rgba(black, 0.1),
|
|
32
|
+
0px 5px 5px rgba(black, 0.1)
|
|
33
|
+
),
|
|
34
|
+
12: (
|
|
35
|
+
0px 5px 22px rgba(black, 0.08),
|
|
36
|
+
0px 12px 17px rgba(black, 0.1),
|
|
37
|
+
0px 7px 8px rgba(black, 0.1)
|
|
38
|
+
),
|
|
39
|
+
16: (
|
|
40
|
+
0px 7px 30px rgba(black, 0.08),
|
|
41
|
+
0px 16px 24px rgba(black, 0.1),
|
|
42
|
+
0px 8px 10px rgba(black, 0.1)
|
|
43
|
+
),
|
|
44
|
+
24: (
|
|
45
|
+
0px 9px 46px rgba(black, 0.08),
|
|
46
|
+
0px 24px 38px rgba(black, 0.1),
|
|
47
|
+
0px 11px 15px rgba(black, 0.1)
|
|
48
|
+
)
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
@mixin level($level) {
|
|
52
|
+
@if map.has-key($levels, $level) {
|
|
53
|
+
box-shadow: map.get($levels, $level);
|
|
54
|
+
} @else {
|
|
55
|
+
@error "Level #{$level} does not exist.";
|
|
56
|
+
}
|
|
57
|
+
}
|