@metamask-previews/design-tokens 8.1.1-preview.c47bb52 → 8.2.2-preview.3aca0bd
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/CHANGELOG.md +31 -1
- package/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/js/animations/durations.cjs +17 -0
- package/dist/js/animations/durations.cjs.map +1 -0
- package/dist/js/animations/durations.d.cts +13 -0
- package/dist/js/animations/durations.d.cts.map +1 -0
- package/dist/js/animations/durations.d.mts +13 -0
- package/dist/js/animations/durations.d.mts.map +1 -0
- package/dist/js/animations/durations.mjs +14 -0
- package/dist/js/animations/durations.mjs.map +1 -0
- package/dist/js/animations/index.cjs +6 -0
- package/dist/js/animations/index.cjs.map +1 -0
- package/dist/js/animations/index.d.cts +2 -0
- package/dist/js/animations/index.d.cts.map +1 -0
- package/dist/js/animations/index.d.mts +2 -0
- package/dist/js/animations/index.d.mts.map +1 -0
- package/dist/js/animations/index.mjs +2 -0
- package/dist/js/animations/index.mjs.map +1 -0
- package/dist/js/brandColor/brandColor.cjs +11 -11
- package/dist/js/brandColor/brandColor.cjs.map +1 -1
- package/dist/js/brandColor/brandColor.mjs +11 -11
- package/dist/js/brandColor/brandColor.mjs.map +1 -1
- package/dist/js/brandColor/brandColor.types.cjs.map +1 -1
- package/dist/js/brandColor/brandColor.types.d.cts +1 -1
- package/dist/js/brandColor/brandColor.types.d.mts +1 -1
- package/dist/js/brandColor/brandColor.types.mjs.map +1 -1
- package/dist/js/index.cjs +4 -1
- package/dist/js/index.cjs.map +1 -1
- package/dist/js/index.d.cts +1 -0
- package/dist/js/index.d.cts.map +1 -1
- package/dist/js/index.d.mts +1 -0
- package/dist/js/index.d.mts.map +1 -1
- package/dist/js/index.mjs +2 -0
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/themes/darkTheme/colors.cjs +22 -22
- package/dist/js/themes/darkTheme/colors.cjs.map +1 -1
- package/dist/js/themes/darkTheme/colors.mjs +22 -22
- package/dist/js/themes/darkTheme/colors.mjs.map +1 -1
- package/dist/js/themes/lightTheme/colors.cjs +22 -22
- package/dist/js/themes/lightTheme/colors.cjs.map +1 -1
- package/dist/js/themes/lightTheme/colors.mjs +22 -22
- package/dist/js/themes/lightTheme/colors.mjs.map +1 -1
- package/dist/js/typography/fontSizes.cjs +1 -1
- package/dist/js/typography/fontSizes.cjs.map +1 -1
- package/dist/js/typography/fontSizes.mjs +1 -1
- package/dist/js/typography/fontSizes.mjs.map +1 -1
- package/dist/js/typography/typography.cjs +3 -3
- package/dist/js/typography/typography.cjs.map +1 -1
- package/dist/js/typography/typography.mjs +3 -3
- package/dist/js/typography/typography.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind/theme.css +1224 -0
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [8.2.2]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Updated typography scale for improved text hierarchy ([#936](https://github.com/MetaMask/metamask-design-system/pull/936))
|
|
15
|
+
- `fontSize.5` increased from 18px to 20px, affecting `HeadingMd`, `SectionHeading`, `BodyLg`, and `ButtonLabelLg` typography tokens
|
|
16
|
+
- `SectionHeading` on large screens now uses 24px (up from 20px) to maintain consistent hierarchy with `HeadingMd`
|
|
17
|
+
- These tokens map to `TextVariant.HeadingMd`, `TextVariant.SectionHeading`, `TextVariant.BodyLg`, and `TextVariant.ButtonLabelLg` used in the `Text` component from both `@metamask/design-system-react` and `@metamask/design-system-react-native` packages
|
|
18
|
+
- Typography documentation updated to reflect the refined sizes
|
|
19
|
+
|
|
20
|
+
## [8.2.1]
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Updated neutral grey palette (grey050-grey1000) to ensure consistent elevations and interactions across themes ([#849](https://github.com/MetaMask/metamask-design-system/pull/849))
|
|
25
|
+
- Refined neutral color values for more perceptible uniform elevations
|
|
26
|
+
- Improved hue consistency across muted shades
|
|
27
|
+
- Updated `background.muted`, `background.defaultHover`, `background.defaultPressed` for better theme consistency
|
|
28
|
+
- Aligned border and overlay colors with theme-appropriate values
|
|
29
|
+
- Synchronized all design tokens (CSS, JS, Figma JSONs) with latest Figma specifications
|
|
30
|
+
|
|
31
|
+
## [8.2.0]
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- Exported `AnimationDuration` enum for standardized animation timing values ([#897](https://github.com/MetaMask/metamask-design-system/pull/897))
|
|
36
|
+
|
|
10
37
|
## [8.1.1]
|
|
11
38
|
|
|
12
39
|
### Fixed
|
|
@@ -398,7 +425,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
398
425
|
|
|
399
426
|
- Initial release.
|
|
400
427
|
|
|
401
|
-
[Unreleased]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@8.
|
|
428
|
+
[Unreleased]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@8.2.2...HEAD
|
|
429
|
+
[8.2.2]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@8.2.1...@metamask/design-tokens@8.2.2
|
|
430
|
+
[8.2.1]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@8.2.0...@metamask/design-tokens@8.2.1
|
|
431
|
+
[8.2.0]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@8.1.1...@metamask/design-tokens@8.2.0
|
|
402
432
|
[8.1.1]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@8.1.0...@metamask/design-tokens@8.1.1
|
|
403
433
|
[8.1.0]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@8.0.0...@metamask/design-tokens@8.1.0
|
|
404
434
|
[8.0.0]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-tokens@7.1.0...@metamask/design-tokens@8.0.0
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.fontFamilies = exports.typography = exports.darkTheme = exports.lightTheme = exports.brandColor = exports.colors = void 0;
|
|
3
|
+
exports.AnimationDuration = exports.fontFamilies = exports.typography = exports.darkTheme = exports.lightTheme = exports.brandColor = exports.colors = void 0;
|
|
4
4
|
var js_1 = require("./js/index.cjs");
|
|
5
5
|
Object.defineProperty(exports, "colors", { enumerable: true, get: function () { return js_1.colors; } });
|
|
6
6
|
Object.defineProperty(exports, "brandColor", { enumerable: true, get: function () { return js_1.brandColor; } });
|
|
@@ -8,4 +8,5 @@ Object.defineProperty(exports, "lightTheme", { enumerable: true, get: function (
|
|
|
8
8
|
Object.defineProperty(exports, "darkTheme", { enumerable: true, get: function () { return js_1.darkTheme; } });
|
|
9
9
|
Object.defineProperty(exports, "typography", { enumerable: true, get: function () { return js_1.typography; } });
|
|
10
10
|
Object.defineProperty(exports, "fontFamilies", { enumerable: true, get: function () { return js_1.fontFamilies; } });
|
|
11
|
+
Object.defineProperty(exports, "AnimationDuration", { enumerable: true, get: function () { return js_1.AnimationDuration; } });
|
|
11
12
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,qCAQc;AAPZ,4FAAA,MAAM,OAAA;AACN,gGAAA,UAAU,OAAA;AACV,gGAAA,UAAU,OAAA;AACV,+FAAA,SAAS,OAAA;AACT,gGAAA,UAAU,OAAA;AACV,kGAAA,YAAY,OAAA;AACZ,uGAAA,iBAAiB,OAAA","sourcesContent":["export {\n colors, // DEPRECATED in favor of importing lightTheme and darkTheme\n brandColor,\n lightTheme,\n darkTheme,\n typography,\n fontFamilies,\n AnimationDuration,\n} from './js';\nexport type {\n BrandColor,\n Theme,\n ThemeColors,\n ThemeShadows,\n ThemeTypography,\n} from './js';\n"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { colors, // DEPRECATED in favor of importing lightTheme and darkTheme
|
|
2
|
-
brandColor, lightTheme, darkTheme, typography, fontFamilies, } from "./js/index.cjs";
|
|
2
|
+
brandColor, lightTheme, darkTheme, typography, fontFamilies, AnimationDuration, } from "./js/index.cjs";
|
|
3
3
|
export type { BrandColor, Theme, ThemeColors, ThemeShadows, ThemeTypography, } from "./js/index.cjs";
|
|
4
4
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EAAE,4DAA4D;AACpE,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EAAE,4DAA4D;AACpE,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACV,YAAY,EACZ,iBAAiB,GAClB,uBAAa;AACd,YAAY,EACV,UAAU,EACV,KAAK,EACL,WAAW,EACX,YAAY,EACZ,eAAe,GAChB,uBAAa"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { colors, // DEPRECATED in favor of importing lightTheme and darkTheme
|
|
2
|
-
brandColor, lightTheme, darkTheme, typography, fontFamilies, } from "./js/index.mjs";
|
|
2
|
+
brandColor, lightTheme, darkTheme, typography, fontFamilies, AnimationDuration, } from "./js/index.mjs";
|
|
3
3
|
export type { BrandColor, Theme, ThemeColors, ThemeShadows, ThemeTypography, } from "./js/index.mjs";
|
|
4
4
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EAAE,4DAA4D;AACpE,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EAAE,4DAA4D;AACpE,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACV,YAAY,EACZ,iBAAiB,GAClB,uBAAa;AACd,YAAY,EACV,UAAU,EACV,KAAK,EACL,WAAW,EACX,YAAY,EACZ,eAAe,GAChB,uBAAa"}
|
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { colors, // DEPRECATED in favor of importing lightTheme and darkTheme
|
|
2
|
-
brandColor, lightTheme, darkTheme, typography, fontFamilies } from "./js/index.mjs";
|
|
2
|
+
brandColor, lightTheme, darkTheme, typography, fontFamilies, AnimationDuration } from "./js/index.mjs";
|
|
3
3
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EAAE,4DAA4D;AACpE,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EAAE,4DAA4D;AACpE,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACV,YAAY,EACZ,iBAAiB,EAClB,uBAAa","sourcesContent":["export {\n colors, // DEPRECATED in favor of importing lightTheme and darkTheme\n brandColor,\n lightTheme,\n darkTheme,\n typography,\n fontFamilies,\n AnimationDuration,\n} from './js';\nexport type {\n BrandColor,\n Theme,\n ThemeColors,\n ThemeShadows,\n ThemeTypography,\n} from './js';\n"]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnimationDuration = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Animation Tokens in milliseconds.
|
|
6
|
+
*/
|
|
7
|
+
var AnimationDuration;
|
|
8
|
+
(function (AnimationDuration) {
|
|
9
|
+
AnimationDuration[AnimationDuration["Instantly"] = 0] = "Instantly";
|
|
10
|
+
AnimationDuration[AnimationDuration["Immediately"] = 50] = "Immediately";
|
|
11
|
+
AnimationDuration[AnimationDuration["Quickly"] = 100] = "Quickly";
|
|
12
|
+
AnimationDuration[AnimationDuration["Fast"] = 150] = "Fast";
|
|
13
|
+
AnimationDuration[AnimationDuration["Promptly"] = 200] = "Promptly";
|
|
14
|
+
AnimationDuration[AnimationDuration["Regularly"] = 300] = "Regularly";
|
|
15
|
+
AnimationDuration[AnimationDuration["Slowly"] = 400] = "Slowly";
|
|
16
|
+
})(AnimationDuration || (exports.AnimationDuration = AnimationDuration = {}));
|
|
17
|
+
//# sourceMappingURL=durations.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"durations.cjs","sourceRoot":"","sources":["../../../src/js/animations/durations.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH,IAAY,iBAQX;AARD,WAAY,iBAAiB;IAC3B,mEAAa,CAAA;IACb,wEAAgB,CAAA;IAChB,iEAAa,CAAA;IACb,2DAAU,CAAA;IACV,mEAAc,CAAA;IACd,qEAAe,CAAA;IACf,+DAAY,CAAA;AACd,CAAC,EARW,iBAAiB,iCAAjB,iBAAiB,QAQ5B","sourcesContent":["/**\n * Animation Tokens in milliseconds.\n */\nexport enum AnimationDuration {\n Instantly = 0,\n Immediately = 50,\n Quickly = 100,\n Fast = 150,\n Promptly = 200,\n Regularly = 300,\n Slowly = 400,\n}\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Animation Tokens in milliseconds.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum AnimationDuration {
|
|
5
|
+
Instantly = 0,
|
|
6
|
+
Immediately = 50,
|
|
7
|
+
Quickly = 100,
|
|
8
|
+
Fast = 150,
|
|
9
|
+
Promptly = 200,
|
|
10
|
+
Regularly = 300,
|
|
11
|
+
Slowly = 400
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=durations.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"durations.d.cts","sourceRoot":"","sources":["../../../src/js/animations/durations.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,iBAAiB;IAC3B,SAAS,IAAI;IACb,WAAW,KAAK;IAChB,OAAO,MAAM;IACb,IAAI,MAAM;IACV,QAAQ,MAAM;IACd,SAAS,MAAM;IACf,MAAM,MAAM;CACb"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Animation Tokens in milliseconds.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum AnimationDuration {
|
|
5
|
+
Instantly = 0,
|
|
6
|
+
Immediately = 50,
|
|
7
|
+
Quickly = 100,
|
|
8
|
+
Fast = 150,
|
|
9
|
+
Promptly = 200,
|
|
10
|
+
Regularly = 300,
|
|
11
|
+
Slowly = 400
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=durations.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"durations.d.mts","sourceRoot":"","sources":["../../../src/js/animations/durations.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,iBAAiB;IAC3B,SAAS,IAAI;IACb,WAAW,KAAK;IAChB,OAAO,MAAM;IACb,IAAI,MAAM;IACV,QAAQ,MAAM;IACd,SAAS,MAAM;IACf,MAAM,MAAM;CACb"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Animation Tokens in milliseconds.
|
|
3
|
+
*/
|
|
4
|
+
export var AnimationDuration;
|
|
5
|
+
(function (AnimationDuration) {
|
|
6
|
+
AnimationDuration[AnimationDuration["Instantly"] = 0] = "Instantly";
|
|
7
|
+
AnimationDuration[AnimationDuration["Immediately"] = 50] = "Immediately";
|
|
8
|
+
AnimationDuration[AnimationDuration["Quickly"] = 100] = "Quickly";
|
|
9
|
+
AnimationDuration[AnimationDuration["Fast"] = 150] = "Fast";
|
|
10
|
+
AnimationDuration[AnimationDuration["Promptly"] = 200] = "Promptly";
|
|
11
|
+
AnimationDuration[AnimationDuration["Regularly"] = 300] = "Regularly";
|
|
12
|
+
AnimationDuration[AnimationDuration["Slowly"] = 400] = "Slowly";
|
|
13
|
+
})(AnimationDuration || (AnimationDuration = {}));
|
|
14
|
+
//# sourceMappingURL=durations.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"durations.mjs","sourceRoot":"","sources":["../../../src/js/animations/durations.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAN,IAAY,iBAQX;AARD,WAAY,iBAAiB;IAC3B,mEAAa,CAAA;IACb,wEAAgB,CAAA;IAChB,iEAAa,CAAA;IACb,2DAAU,CAAA;IACV,mEAAc,CAAA;IACd,qEAAe,CAAA;IACf,+DAAY,CAAA;AACd,CAAC,EARW,iBAAiB,KAAjB,iBAAiB,QAQ5B","sourcesContent":["/**\n * Animation Tokens in milliseconds.\n */\nexport enum AnimationDuration {\n Instantly = 0,\n Immediately = 50,\n Quickly = 100,\n Fast = 150,\n Promptly = 200,\n Regularly = 300,\n Slowly = 400,\n}\n"]}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnimationDuration = void 0;
|
|
4
|
+
var durations_1 = require("./durations.cjs");
|
|
5
|
+
Object.defineProperty(exports, "AnimationDuration", { enumerable: true, get: function () { return durations_1.AnimationDuration; } });
|
|
6
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../../src/js/animations/index.ts"],"names":[],"mappings":";;;AAAA,6CAAgD;AAAvC,8GAAA,iBAAiB,OAAA","sourcesContent":["export { AnimationDuration } from './durations';\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../../src/js/animations/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,wBAAoB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/js/animations/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,wBAAoB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/js/animations/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,wBAAoB","sourcesContent":["export { AnimationDuration } from './durations';\n"]}
|
|
@@ -3,27 +3,27 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.brandColor = void 0;
|
|
4
4
|
exports.brandColor = {
|
|
5
5
|
// Grey
|
|
6
|
-
grey100: '#
|
|
6
|
+
grey100: '#ededed',
|
|
7
7
|
// Grey
|
|
8
|
-
grey200: '#
|
|
8
|
+
grey200: '#babbbe',
|
|
9
9
|
// Grey
|
|
10
|
-
grey300: '#
|
|
10
|
+
grey300: '#a3a4a7',
|
|
11
11
|
// Grey
|
|
12
|
-
grey400: '#
|
|
12
|
+
grey400: '#949596',
|
|
13
13
|
// Grey
|
|
14
|
-
grey500: '#
|
|
14
|
+
grey500: '#66676a',
|
|
15
15
|
// Grey
|
|
16
|
-
grey600: '#
|
|
16
|
+
grey600: '#47484a',
|
|
17
17
|
// Grey
|
|
18
|
-
grey700: '#
|
|
18
|
+
grey700: '#252628',
|
|
19
19
|
// Grey
|
|
20
|
-
grey800: '#
|
|
20
|
+
grey800: '#1c1d1f',
|
|
21
21
|
// Grey
|
|
22
|
-
grey900: '#
|
|
22
|
+
grey900: '#131416',
|
|
23
23
|
// Grey
|
|
24
|
-
grey1000: '#
|
|
24
|
+
grey1000: '#0c0d0f',
|
|
25
25
|
// Grey
|
|
26
|
-
grey050: '#
|
|
26
|
+
grey050: '#f3f3f4',
|
|
27
27
|
// Grey
|
|
28
28
|
grey000: '#ffffff',
|
|
29
29
|
// Grey
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brandColor.cjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.ts"],"names":[],"mappings":";;;AAEa,QAAA,UAAU,GAAe;IACpC,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,QAAQ,EAAE,SAAS;IACnB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,QAAQ;IACR,KAAK,EAAE,SAAS;IAChB,QAAQ;IACR,KAAK,EAAE,SAAS;CACjB,CAAC","sourcesContent":["import type { BrandColor } from './brandColor.types';\n\nexport const brandColor: BrandColor = {\n // Grey\n grey100: '#
|
|
1
|
+
{"version":3,"file":"brandColor.cjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.ts"],"names":[],"mappings":";;;AAEa,QAAA,UAAU,GAAe;IACpC,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,QAAQ,EAAE,SAAS;IACnB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,QAAQ;IACR,KAAK,EAAE,SAAS;IAChB,QAAQ;IACR,KAAK,EAAE,SAAS;CACjB,CAAC","sourcesContent":["import type { BrandColor } from './brandColor.types';\n\nexport const brandColor: BrandColor = {\n // Grey\n grey100: '#ededed',\n // Grey\n grey200: '#babbbe',\n // Grey\n grey300: '#a3a4a7',\n // Grey\n grey400: '#949596',\n // Grey\n grey500: '#66676a',\n // Grey\n grey600: '#47484a',\n // Grey\n grey700: '#252628',\n // Grey\n grey800: '#1c1d1f',\n // Grey\n grey900: '#131416',\n // Grey\n grey1000: '#0c0d0f',\n // Grey\n grey050: '#f3f3f4',\n // Grey\n grey000: '#ffffff',\n // Grey\n grey025: '#f7f9fc',\n // Blue\n blue100: '#d6dbff',\n // Blue\n blue200: '#adb6fe',\n // Blue\n blue300: '#8b99ff',\n // Blue\n blue400: '#6f7eff',\n // Blue\n blue500: '#4459ff',\n // Blue\n blue600: '#2c3dc5',\n // Blue\n blue700: '#1c277f',\n // Blue\n blue800: '#131b59',\n // Blue\n blue900: '#0b0f32',\n // Blue\n blue050: '#f4f5ff',\n // Blue\n blue025: '#f8f9ff',\n // Green\n green100: '#c1e6c9',\n // Green\n green200: '#80cb91',\n // Green\n green300: '#4cb564',\n // Green\n green400: '#279f41',\n // Green\n green500: '#1c7e33',\n // Green\n green600: '#145d25',\n // Green\n green700: '#0d3b18',\n // Green\n green800: '#092912',\n // Green\n green900: '#051709',\n // Green\n green050: '#ebf7ee',\n // Green\n green025: '#f1faf4',\n // Red\n red100: '#ffd2d5',\n // Red\n red200: '#ffa1aa',\n // Red\n red300: '#ff7584',\n // Red\n red400: '#f74d5e',\n // Red\n red500: '#ca3542',\n // Red\n red600: '#952731',\n // Red\n red700: '#611a20',\n // Red\n red800: '#431216',\n // Red\n red900: '#3b0f13',\n // Red\n red050: '#fff2f3',\n // Red\n red025: '#fff6f7',\n // Yellow\n yellow100: '#ffd957',\n // Yellow\n yellow200: '#f0b034',\n // Yellow\n yellow300: '#e18f01',\n // Yellow\n yellow400: '#c37b02',\n // Yellow\n yellow500: '#9a6300',\n // Yellow\n yellow600: '#714802',\n // Yellow\n yellow700: '#482d01',\n // Yellow\n yellow800: '#321f00',\n // Yellow\n yellow900: '#1c1100',\n // Yellow\n yellow050: '#fff5d5',\n // Yellow\n yellow025: '#fff9e6',\n // Orange\n orange100: '#ffd4c1',\n // Orange\n orange200: '#ffa680',\n // Orange\n orange300: '#ff7940',\n // Orange\n orange400: '#ff5c16',\n // Orange\n orange500: '#c3420d',\n // Orange\n orange600: '#932d06',\n // Orange\n orange700: '#661800',\n // Orange\n orange800: '#451100',\n // Orange\n orange900: '#280a00',\n // Orange\n orange050: '#fff0ea',\n // Orange\n orange025: '#fff8f5',\n // Purple\n purple100: '#eac2ff',\n // Purple\n purple200: '#dfa4ff',\n // Purple\n purple300: '#d075ff',\n // Purple\n purple400: '#b864f5',\n // Purple\n purple500: '#8f44e4',\n // Purple\n purple600: '#6c2ab2',\n // Purple\n purple700: '#6c2ab2',\n // Purple\n purple800: '#3d065f',\n // Purple\n purple900: '#280a00',\n // Purple\n purple050: '#fbf2ff',\n // Purple\n purple025: '#fcf6ff',\n // Lime\n lime100: '#baf24a',\n // Lime\n lime200: '#95ca45',\n // Lime\n lime300: '#7ab040',\n // Lime\n lime400: '#64993d',\n // Lime\n lime500: '#457a39',\n // Lime\n lime600: '#275b35',\n // Lime\n lime700: '#013330',\n // Lime\n lime800: '#012826',\n // Lime\n lime900: '#011515',\n // Lime\n lime025: '#effed9',\n // Lime\n lime050: '#e5ffc3',\n // Indigo\n indigo025: '#f3faff',\n // Indigo\n indigo050: '#ebf5ff',\n // Indigo\n indigo100: '#cce7ff',\n // Indigo\n indigo200: '#89b0ff',\n // Indigo\n indigo300: '#7e9ff0',\n // Indigo\n indigo400: '#6f87db',\n // Indigo\n indigo500: '#5b66bf',\n // Indigo\n indigo600: '#4544a1',\n // Indigo\n indigo700: '#2e2082',\n // Indigo\n indigo800: '#190066',\n // Indigo\n indigo900: '#13004a',\n // White\n white: '#ffffff',\n // Black\n black: '#000000',\n};\n"]}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
export const brandColor = {
|
|
2
2
|
// Grey
|
|
3
|
-
grey100: '#
|
|
3
|
+
grey100: '#ededed',
|
|
4
4
|
// Grey
|
|
5
|
-
grey200: '#
|
|
5
|
+
grey200: '#babbbe',
|
|
6
6
|
// Grey
|
|
7
|
-
grey300: '#
|
|
7
|
+
grey300: '#a3a4a7',
|
|
8
8
|
// Grey
|
|
9
|
-
grey400: '#
|
|
9
|
+
grey400: '#949596',
|
|
10
10
|
// Grey
|
|
11
|
-
grey500: '#
|
|
11
|
+
grey500: '#66676a',
|
|
12
12
|
// Grey
|
|
13
|
-
grey600: '#
|
|
13
|
+
grey600: '#47484a',
|
|
14
14
|
// Grey
|
|
15
|
-
grey700: '#
|
|
15
|
+
grey700: '#252628',
|
|
16
16
|
// Grey
|
|
17
|
-
grey800: '#
|
|
17
|
+
grey800: '#1c1d1f',
|
|
18
18
|
// Grey
|
|
19
|
-
grey900: '#
|
|
19
|
+
grey900: '#131416',
|
|
20
20
|
// Grey
|
|
21
|
-
grey1000: '#
|
|
21
|
+
grey1000: '#0c0d0f',
|
|
22
22
|
// Grey
|
|
23
|
-
grey050: '#
|
|
23
|
+
grey050: '#f3f3f4',
|
|
24
24
|
// Grey
|
|
25
25
|
grey000: '#ffffff',
|
|
26
26
|
// Grey
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brandColor.mjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,UAAU,GAAe;IACpC,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,QAAQ,EAAE,SAAS;IACnB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,QAAQ;IACR,KAAK,EAAE,SAAS;IAChB,QAAQ;IACR,KAAK,EAAE,SAAS;CACjB,CAAC","sourcesContent":["import type { BrandColor } from './brandColor.types';\n\nexport const brandColor: BrandColor = {\n // Grey\n grey100: '#
|
|
1
|
+
{"version":3,"file":"brandColor.mjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,UAAU,GAAe;IACpC,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,QAAQ,EAAE,SAAS;IACnB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,QAAQ;IACR,QAAQ,EAAE,SAAS;IACnB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,MAAM;IACN,MAAM,EAAE,SAAS;IACjB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,OAAO;IACP,OAAO,EAAE,SAAS;IAClB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,SAAS;IACT,SAAS,EAAE,SAAS;IACpB,QAAQ;IACR,KAAK,EAAE,SAAS;IAChB,QAAQ;IACR,KAAK,EAAE,SAAS;CACjB,CAAC","sourcesContent":["import type { BrandColor } from './brandColor.types';\n\nexport const brandColor: BrandColor = {\n // Grey\n grey100: '#ededed',\n // Grey\n grey200: '#babbbe',\n // Grey\n grey300: '#a3a4a7',\n // Grey\n grey400: '#949596',\n // Grey\n grey500: '#66676a',\n // Grey\n grey600: '#47484a',\n // Grey\n grey700: '#252628',\n // Grey\n grey800: '#1c1d1f',\n // Grey\n grey900: '#131416',\n // Grey\n grey1000: '#0c0d0f',\n // Grey\n grey050: '#f3f3f4',\n // Grey\n grey000: '#ffffff',\n // Grey\n grey025: '#f7f9fc',\n // Blue\n blue100: '#d6dbff',\n // Blue\n blue200: '#adb6fe',\n // Blue\n blue300: '#8b99ff',\n // Blue\n blue400: '#6f7eff',\n // Blue\n blue500: '#4459ff',\n // Blue\n blue600: '#2c3dc5',\n // Blue\n blue700: '#1c277f',\n // Blue\n blue800: '#131b59',\n // Blue\n blue900: '#0b0f32',\n // Blue\n blue050: '#f4f5ff',\n // Blue\n blue025: '#f8f9ff',\n // Green\n green100: '#c1e6c9',\n // Green\n green200: '#80cb91',\n // Green\n green300: '#4cb564',\n // Green\n green400: '#279f41',\n // Green\n green500: '#1c7e33',\n // Green\n green600: '#145d25',\n // Green\n green700: '#0d3b18',\n // Green\n green800: '#092912',\n // Green\n green900: '#051709',\n // Green\n green050: '#ebf7ee',\n // Green\n green025: '#f1faf4',\n // Red\n red100: '#ffd2d5',\n // Red\n red200: '#ffa1aa',\n // Red\n red300: '#ff7584',\n // Red\n red400: '#f74d5e',\n // Red\n red500: '#ca3542',\n // Red\n red600: '#952731',\n // Red\n red700: '#611a20',\n // Red\n red800: '#431216',\n // Red\n red900: '#3b0f13',\n // Red\n red050: '#fff2f3',\n // Red\n red025: '#fff6f7',\n // Yellow\n yellow100: '#ffd957',\n // Yellow\n yellow200: '#f0b034',\n // Yellow\n yellow300: '#e18f01',\n // Yellow\n yellow400: '#c37b02',\n // Yellow\n yellow500: '#9a6300',\n // Yellow\n yellow600: '#714802',\n // Yellow\n yellow700: '#482d01',\n // Yellow\n yellow800: '#321f00',\n // Yellow\n yellow900: '#1c1100',\n // Yellow\n yellow050: '#fff5d5',\n // Yellow\n yellow025: '#fff9e6',\n // Orange\n orange100: '#ffd4c1',\n // Orange\n orange200: '#ffa680',\n // Orange\n orange300: '#ff7940',\n // Orange\n orange400: '#ff5c16',\n // Orange\n orange500: '#c3420d',\n // Orange\n orange600: '#932d06',\n // Orange\n orange700: '#661800',\n // Orange\n orange800: '#451100',\n // Orange\n orange900: '#280a00',\n // Orange\n orange050: '#fff0ea',\n // Orange\n orange025: '#fff8f5',\n // Purple\n purple100: '#eac2ff',\n // Purple\n purple200: '#dfa4ff',\n // Purple\n purple300: '#d075ff',\n // Purple\n purple400: '#b864f5',\n // Purple\n purple500: '#8f44e4',\n // Purple\n purple600: '#6c2ab2',\n // Purple\n purple700: '#6c2ab2',\n // Purple\n purple800: '#3d065f',\n // Purple\n purple900: '#280a00',\n // Purple\n purple050: '#fbf2ff',\n // Purple\n purple025: '#fcf6ff',\n // Lime\n lime100: '#baf24a',\n // Lime\n lime200: '#95ca45',\n // Lime\n lime300: '#7ab040',\n // Lime\n lime400: '#64993d',\n // Lime\n lime500: '#457a39',\n // Lime\n lime600: '#275b35',\n // Lime\n lime700: '#013330',\n // Lime\n lime800: '#012826',\n // Lime\n lime900: '#011515',\n // Lime\n lime025: '#effed9',\n // Lime\n lime050: '#e5ffc3',\n // Indigo\n indigo025: '#f3faff',\n // Indigo\n indigo050: '#ebf5ff',\n // Indigo\n indigo100: '#cce7ff',\n // Indigo\n indigo200: '#89b0ff',\n // Indigo\n indigo300: '#7e9ff0',\n // Indigo\n indigo400: '#6f87db',\n // Indigo\n indigo500: '#5b66bf',\n // Indigo\n indigo600: '#4544a1',\n // Indigo\n indigo700: '#2e2082',\n // Indigo\n indigo800: '#190066',\n // Indigo\n indigo900: '#13004a',\n // White\n white: '#ffffff',\n // Black\n black: '#000000',\n};\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brandColor.types.cjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.types.ts"],"names":[],"mappings":"","sourcesContent":["export type BrandColor = {\n /** grey/grey100: #dadce5 */\n grey100: string;\n /** grey/grey200: #b7bbc8 */\n grey200: string;\n /** grey/grey300: #9ca1af */\n grey300: string;\n /** grey/grey400: #858b9a */\n grey400: string;\n /** grey/grey500: #686e7d */\n grey500: string;\n /** grey/grey600: #4b505c */\n grey600: string;\n /** grey/grey700: #31333a */\n grey700: string;\n /** grey/grey800: #232426 */\n grey800: string;\n /** grey/grey900: #121314 */\n grey900: string;\n /** grey/grey1000: #
|
|
1
|
+
{"version":3,"file":"brandColor.types.cjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.types.ts"],"names":[],"mappings":"","sourcesContent":["export type BrandColor = {\n /** grey/grey100: #dadce5 */\n grey100: string;\n /** grey/grey200: #b7bbc8 */\n grey200: string;\n /** grey/grey300: #9ca1af */\n grey300: string;\n /** grey/grey400: #858b9a */\n grey400: string;\n /** grey/grey500: #686e7d */\n grey500: string;\n /** grey/grey600: #4b505c */\n grey600: string;\n /** grey/grey700: #31333a */\n grey700: string;\n /** grey/grey800: #232426 */\n grey800: string;\n /** grey/grey900: #121314 */\n grey900: string;\n /** grey/grey1000: #0c0d0f */\n grey1000: string;\n /** grey/grey050: #f3f5f9 */\n grey050: string;\n /** grey/grey000: #ffffff */\n grey000: string;\n /** grey/grey025: #f7f9fc */\n grey025: string;\n /** blue/blue100: #d6dbff */\n blue100: string;\n /** blue/blue200: #adb6fe */\n blue200: string;\n /** blue/blue300: #8b99ff */\n blue300: string;\n /** blue/blue400: #6f7eff */\n blue400: string;\n /** blue/blue500: #4459ff */\n blue500: string;\n /** blue/blue600: #2c3dc5 */\n blue600: string;\n /** blue/blue700: #1c277f */\n blue700: string;\n /** blue/blue800: #131b59 */\n blue800: string;\n /** blue/blue900: #0b0f32 */\n blue900: string;\n /** blue/blue050: #f4f5ff */\n blue050: string;\n /** blue/blue025: #f8f9ff */\n blue025: string;\n /** green/green100: #c1e6c9 */\n green100: string;\n /** green/green200: #80cb91 */\n green200: string;\n /** green/green300: #4cb564 */\n green300: string;\n /** green/green400: #279f41 */\n green400: string;\n /** green/green500: #1c7e33 */\n green500: string;\n /** green/green600: #145d25 */\n green600: string;\n /** green/green700: #0d3b18 */\n green700: string;\n /** green/green800: #092912 */\n green800: string;\n /** green/green900: #051709 */\n green900: string;\n /** green/green050: #ebf7ee */\n green050: string;\n /** green/green025: #f1faf4 */\n green025: string;\n /** red/red100: #ffd2d5 */\n red100: string;\n /** red/red200: #ffa1aa */\n red200: string;\n /** red/red300: #ff7584 */\n red300: string;\n /** red/red400: #f74d5e */\n red400: string;\n /** red/red500: #ca3542 */\n red500: string;\n /** red/red600: #952731 */\n red600: string;\n /** red/red700: #611a20 */\n red700: string;\n /** red/red800: #431216 */\n red800: string;\n /** red/red900: #3b0f13 */\n red900: string;\n /** red/red050: #fff2f3 */\n red050: string;\n /** red/red025: #fff6f7 */\n red025: string;\n /** yellow/yellow100: #ffd957 */\n yellow100: string;\n /** yellow/yellow200: #f0b034 */\n yellow200: string;\n /** yellow/yellow300: #e18f01 */\n yellow300: string;\n /** yellow/yellow400: #c37b02 */\n yellow400: string;\n /** yellow/yellow500: #9a6300 */\n yellow500: string;\n /** yellow/yellow600: #714802 */\n yellow600: string;\n /** yellow/yellow700: #482d01 */\n yellow700: string;\n /** yellow/yellow800: #321f00 */\n yellow800: string;\n /** yellow/yellow900: #1c1100 */\n yellow900: string;\n /** yellow/yellow050: #fff5d5 */\n yellow050: string;\n /** yellow/yellow025: #fff9e6 */\n yellow025: string;\n /** orange/orange100: #ffd4c1 */\n orange100: string;\n /** orange/orange200: #ffa680 */\n orange200: string;\n /** orange/orange300: #ff7940 */\n orange300: string;\n /** orange/orange400: #ff5c16 */\n orange400: string;\n /** orange/orange500: #c3420d */\n orange500: string;\n /** orange/orange600: #932d06 */\n orange600: string;\n /** orange/orange700: #661800 */\n orange700: string;\n /** orange/orange800: #451100 */\n orange800: string;\n /** orange/orange900: #280a00 */\n orange900: string;\n /** orange/orange050: #fff0ea */\n orange050: string;\n /** orange/orange025: #fff8f5 */\n orange025: string;\n /** purple/purple100: #eac2ff */\n purple100: string;\n /** purple/purple200: #dfa4ff */\n purple200: string;\n /** purple/purple300: #d075ff */\n purple300: string;\n /** purple/purple400: #b864f5 */\n purple400: string;\n /** purple/purple500: #8f44e4 */\n purple500: string;\n /** purple/purple600: #6c2ab2 */\n purple600: string;\n /** purple/purple700: #6c2ab2 */\n purple700: string;\n /** purple/purple800: #3d065f */\n purple800: string;\n /** purple/purple900: #280a00 */\n purple900: string;\n /** purple/purple050: #fbf2ff */\n purple050: string;\n /** purple/purple025: #fcf6ff */\n purple025: string;\n /** lime/lime100: #baf24a */\n lime100: string;\n /** lime/lime200: #95ca45 */\n lime200: string;\n /** lime/lime300: #7ab040 */\n lime300: string;\n /** lime/lime400: #64993d */\n lime400: string;\n /** lime/lime500: #457a39 */\n lime500: string;\n /** lime/lime600: #275b35 */\n lime600: string;\n /** lime/lime700: #013330 */\n lime700: string;\n /** lime/lime800: #012826 */\n lime800: string;\n /** lime/lime900: #011515 */\n lime900: string;\n /** lime/lime025: #effed9 */\n lime025: string;\n /** lime/lime050: #e5ffc3 */\n lime050: string;\n /** indigo/indigo025: #f3faff */\n indigo025: string;\n /** indigo/indigo050: #ebf5ff */\n indigo050: string;\n /** indigo/indigo100: #cce7ff */\n indigo100: string;\n /** indigo/indigo200: #89b0ff */\n indigo200: string;\n /** indigo/indigo300: #7e9ff0 */\n indigo300: string;\n /** indigo/indigo400: #6f87db */\n indigo400: string;\n /** indigo/indigo500: #5b66bf */\n indigo500: string;\n /** indigo/indigo600: #4544a1 */\n indigo600: string;\n /** indigo/indigo700: #2e2082 */\n indigo700: string;\n /** indigo/indigo800: #190066 */\n indigo800: string;\n /** indigo/indigo900: #13004a */\n indigo900: string;\n /** white: #ffffff */\n white: string;\n /** black: #000000 */\n black: string;\n};\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brandColor.types.mjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.types.ts"],"names":[],"mappings":"","sourcesContent":["export type BrandColor = {\n /** grey/grey100: #dadce5 */\n grey100: string;\n /** grey/grey200: #b7bbc8 */\n grey200: string;\n /** grey/grey300: #9ca1af */\n grey300: string;\n /** grey/grey400: #858b9a */\n grey400: string;\n /** grey/grey500: #686e7d */\n grey500: string;\n /** grey/grey600: #4b505c */\n grey600: string;\n /** grey/grey700: #31333a */\n grey700: string;\n /** grey/grey800: #232426 */\n grey800: string;\n /** grey/grey900: #121314 */\n grey900: string;\n /** grey/grey1000: #
|
|
1
|
+
{"version":3,"file":"brandColor.types.mjs","sourceRoot":"","sources":["../../../src/js/brandColor/brandColor.types.ts"],"names":[],"mappings":"","sourcesContent":["export type BrandColor = {\n /** grey/grey100: #dadce5 */\n grey100: string;\n /** grey/grey200: #b7bbc8 */\n grey200: string;\n /** grey/grey300: #9ca1af */\n grey300: string;\n /** grey/grey400: #858b9a */\n grey400: string;\n /** grey/grey500: #686e7d */\n grey500: string;\n /** grey/grey600: #4b505c */\n grey600: string;\n /** grey/grey700: #31333a */\n grey700: string;\n /** grey/grey800: #232426 */\n grey800: string;\n /** grey/grey900: #121314 */\n grey900: string;\n /** grey/grey1000: #0c0d0f */\n grey1000: string;\n /** grey/grey050: #f3f5f9 */\n grey050: string;\n /** grey/grey000: #ffffff */\n grey000: string;\n /** grey/grey025: #f7f9fc */\n grey025: string;\n /** blue/blue100: #d6dbff */\n blue100: string;\n /** blue/blue200: #adb6fe */\n blue200: string;\n /** blue/blue300: #8b99ff */\n blue300: string;\n /** blue/blue400: #6f7eff */\n blue400: string;\n /** blue/blue500: #4459ff */\n blue500: string;\n /** blue/blue600: #2c3dc5 */\n blue600: string;\n /** blue/blue700: #1c277f */\n blue700: string;\n /** blue/blue800: #131b59 */\n blue800: string;\n /** blue/blue900: #0b0f32 */\n blue900: string;\n /** blue/blue050: #f4f5ff */\n blue050: string;\n /** blue/blue025: #f8f9ff */\n blue025: string;\n /** green/green100: #c1e6c9 */\n green100: string;\n /** green/green200: #80cb91 */\n green200: string;\n /** green/green300: #4cb564 */\n green300: string;\n /** green/green400: #279f41 */\n green400: string;\n /** green/green500: #1c7e33 */\n green500: string;\n /** green/green600: #145d25 */\n green600: string;\n /** green/green700: #0d3b18 */\n green700: string;\n /** green/green800: #092912 */\n green800: string;\n /** green/green900: #051709 */\n green900: string;\n /** green/green050: #ebf7ee */\n green050: string;\n /** green/green025: #f1faf4 */\n green025: string;\n /** red/red100: #ffd2d5 */\n red100: string;\n /** red/red200: #ffa1aa */\n red200: string;\n /** red/red300: #ff7584 */\n red300: string;\n /** red/red400: #f74d5e */\n red400: string;\n /** red/red500: #ca3542 */\n red500: string;\n /** red/red600: #952731 */\n red600: string;\n /** red/red700: #611a20 */\n red700: string;\n /** red/red800: #431216 */\n red800: string;\n /** red/red900: #3b0f13 */\n red900: string;\n /** red/red050: #fff2f3 */\n red050: string;\n /** red/red025: #fff6f7 */\n red025: string;\n /** yellow/yellow100: #ffd957 */\n yellow100: string;\n /** yellow/yellow200: #f0b034 */\n yellow200: string;\n /** yellow/yellow300: #e18f01 */\n yellow300: string;\n /** yellow/yellow400: #c37b02 */\n yellow400: string;\n /** yellow/yellow500: #9a6300 */\n yellow500: string;\n /** yellow/yellow600: #714802 */\n yellow600: string;\n /** yellow/yellow700: #482d01 */\n yellow700: string;\n /** yellow/yellow800: #321f00 */\n yellow800: string;\n /** yellow/yellow900: #1c1100 */\n yellow900: string;\n /** yellow/yellow050: #fff5d5 */\n yellow050: string;\n /** yellow/yellow025: #fff9e6 */\n yellow025: string;\n /** orange/orange100: #ffd4c1 */\n orange100: string;\n /** orange/orange200: #ffa680 */\n orange200: string;\n /** orange/orange300: #ff7940 */\n orange300: string;\n /** orange/orange400: #ff5c16 */\n orange400: string;\n /** orange/orange500: #c3420d */\n orange500: string;\n /** orange/orange600: #932d06 */\n orange600: string;\n /** orange/orange700: #661800 */\n orange700: string;\n /** orange/orange800: #451100 */\n orange800: string;\n /** orange/orange900: #280a00 */\n orange900: string;\n /** orange/orange050: #fff0ea */\n orange050: string;\n /** orange/orange025: #fff8f5 */\n orange025: string;\n /** purple/purple100: #eac2ff */\n purple100: string;\n /** purple/purple200: #dfa4ff */\n purple200: string;\n /** purple/purple300: #d075ff */\n purple300: string;\n /** purple/purple400: #b864f5 */\n purple400: string;\n /** purple/purple500: #8f44e4 */\n purple500: string;\n /** purple/purple600: #6c2ab2 */\n purple600: string;\n /** purple/purple700: #6c2ab2 */\n purple700: string;\n /** purple/purple800: #3d065f */\n purple800: string;\n /** purple/purple900: #280a00 */\n purple900: string;\n /** purple/purple050: #fbf2ff */\n purple050: string;\n /** purple/purple025: #fcf6ff */\n purple025: string;\n /** lime/lime100: #baf24a */\n lime100: string;\n /** lime/lime200: #95ca45 */\n lime200: string;\n /** lime/lime300: #7ab040 */\n lime300: string;\n /** lime/lime400: #64993d */\n lime400: string;\n /** lime/lime500: #457a39 */\n lime500: string;\n /** lime/lime600: #275b35 */\n lime600: string;\n /** lime/lime700: #013330 */\n lime700: string;\n /** lime/lime800: #012826 */\n lime800: string;\n /** lime/lime900: #011515 */\n lime900: string;\n /** lime/lime025: #effed9 */\n lime025: string;\n /** lime/lime050: #e5ffc3 */\n lime050: string;\n /** indigo/indigo025: #f3faff */\n indigo025: string;\n /** indigo/indigo050: #ebf5ff */\n indigo050: string;\n /** indigo/indigo100: #cce7ff */\n indigo100: string;\n /** indigo/indigo200: #89b0ff */\n indigo200: string;\n /** indigo/indigo300: #7e9ff0 */\n indigo300: string;\n /** indigo/indigo400: #6f87db */\n indigo400: string;\n /** indigo/indigo500: #5b66bf */\n indigo500: string;\n /** indigo/indigo600: #4544a1 */\n indigo600: string;\n /** indigo/indigo700: #2e2082 */\n indigo700: string;\n /** indigo/indigo800: #190066 */\n indigo800: string;\n /** indigo/indigo900: #13004a */\n indigo900: string;\n /** white: #ffffff */\n white: string;\n /** black: #000000 */\n black: string;\n};\n"]}
|
package/dist/js/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.fontFamilies = exports.typography = exports.darkTheme = exports.lightTheme = exports.brandColor = exports.colors = void 0;
|
|
3
|
+
exports.AnimationDuration = exports.fontFamilies = exports.typography = exports.darkTheme = exports.lightTheme = exports.brandColor = exports.colors = void 0;
|
|
4
4
|
// DEPRECATED in favor of importing lightTheme and darkTheme
|
|
5
5
|
var colors_1 = require("./colors/index.cjs");
|
|
6
6
|
Object.defineProperty(exports, "colors", { enumerable: true, get: function () { return colors_1.colors; } });
|
|
@@ -15,4 +15,7 @@ Object.defineProperty(exports, "darkTheme", { enumerable: true, get: function ()
|
|
|
15
15
|
var typography_1 = require("./typography/index.cjs");
|
|
16
16
|
Object.defineProperty(exports, "typography", { enumerable: true, get: function () { return typography_1.typography; } });
|
|
17
17
|
Object.defineProperty(exports, "fontFamilies", { enumerable: true, get: function () { return typography_1.fontFamilies; } });
|
|
18
|
+
// Animations
|
|
19
|
+
var animations_1 = require("./animations/index.cjs");
|
|
20
|
+
Object.defineProperty(exports, "AnimationDuration", { enumerable: true, get: function () { return animations_1.AnimationDuration; } });
|
|
18
21
|
//# sourceMappingURL=index.cjs.map
|
package/dist/js/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":";;;AAAA,4DAA4D;AAC5D,6CAAkC;AAAzB,gGAAA,MAAM,OAAA;AAEf,cAAc;AACd,qDAA0C;AAAjC,wGAAA,UAAU,OAAA;AAGnB,SAAS;AACT,6CAAiD;AAAxC,oGAAA,UAAU,OAAA;AAAE,mGAAA,SAAS,OAAA;AAG9B,aAAa;AACb,qDAAwD;AAA/C,wGAAA,UAAU,OAAA;AAAE,0GAAA,YAAY,OAAA","sourcesContent":["// DEPRECATED in favor of importing lightTheme and darkTheme\nexport { colors } from './colors';\n\n// Brand Color\nexport { brandColor } from './brandColor';\nexport type { BrandColor } from './brandColor/brandColor.types';\n\n// Themes\nexport { lightTheme, darkTheme } from './themes';\nexport type { Theme, ThemeColors, ThemeShadows } from './themes/types';\n\n// Typography\nexport { typography, fontFamilies } from './typography';\nexport type { ThemeTypography } from './typography';\n"]}
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":";;;AAAA,4DAA4D;AAC5D,6CAAkC;AAAzB,gGAAA,MAAM,OAAA;AAEf,cAAc;AACd,qDAA0C;AAAjC,wGAAA,UAAU,OAAA;AAGnB,SAAS;AACT,6CAAiD;AAAxC,oGAAA,UAAU,OAAA;AAAE,mGAAA,SAAS,OAAA;AAG9B,aAAa;AACb,qDAAwD;AAA/C,wGAAA,UAAU,OAAA;AAAE,0GAAA,YAAY,OAAA;AAGjC,aAAa;AACb,qDAAiD;AAAxC,+GAAA,iBAAiB,OAAA","sourcesContent":["// DEPRECATED in favor of importing lightTheme and darkTheme\nexport { colors } from './colors';\n\n// Brand Color\nexport { brandColor } from './brandColor';\nexport type { BrandColor } from './brandColor/brandColor.types';\n\n// Themes\nexport { lightTheme, darkTheme } from './themes';\nexport type { Theme, ThemeColors, ThemeShadows } from './themes/types';\n\n// Typography\nexport { typography, fontFamilies } from './typography';\nexport type { ThemeTypography } from './typography';\n\n// Animations\nexport { AnimationDuration } from './animations';\n"]}
|
package/dist/js/index.d.cts
CHANGED
|
@@ -5,4 +5,5 @@ export { lightTheme, darkTheme } from "./themes/index.cjs";
|
|
|
5
5
|
export type { Theme, ThemeColors, ThemeShadows } from "./themes/types.cjs";
|
|
6
6
|
export { typography, fontFamilies } from "./typography/index.cjs";
|
|
7
7
|
export type { ThemeTypography } from "./typography/index.cjs";
|
|
8
|
+
export { AnimationDuration } from "./animations/index.cjs";
|
|
8
9
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/js/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,2BAAiB;AAGlC,OAAO,EAAE,UAAU,EAAE,+BAAqB;AAC1C,YAAY,EAAE,UAAU,EAAE,0CAAsC;AAGhE,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,2BAAiB;AACjD,YAAY,EAAE,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,2BAAuB;AAGvE,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,+BAAqB;AACxD,YAAY,EAAE,eAAe,EAAE,+BAAqB"}
|
|
1
|
+
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,2BAAiB;AAGlC,OAAO,EAAE,UAAU,EAAE,+BAAqB;AAC1C,YAAY,EAAE,UAAU,EAAE,0CAAsC;AAGhE,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,2BAAiB;AACjD,YAAY,EAAE,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,2BAAuB;AAGvE,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,+BAAqB;AACxD,YAAY,EAAE,eAAe,EAAE,+BAAqB;AAGpD,OAAO,EAAE,iBAAiB,EAAE,+BAAqB"}
|
package/dist/js/index.d.mts
CHANGED
|
@@ -5,4 +5,5 @@ export { lightTheme, darkTheme } from "./themes/index.mjs";
|
|
|
5
5
|
export type { Theme, ThemeColors, ThemeShadows } from "./themes/types.mjs";
|
|
6
6
|
export { typography, fontFamilies } from "./typography/index.mjs";
|
|
7
7
|
export type { ThemeTypography } from "./typography/index.mjs";
|
|
8
|
+
export { AnimationDuration } from "./animations/index.mjs";
|
|
8
9
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/js/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,2BAAiB;AAGlC,OAAO,EAAE,UAAU,EAAE,+BAAqB;AAC1C,YAAY,EAAE,UAAU,EAAE,0CAAsC;AAGhE,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,2BAAiB;AACjD,YAAY,EAAE,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,2BAAuB;AAGvE,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,+BAAqB;AACxD,YAAY,EAAE,eAAe,EAAE,+BAAqB"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,2BAAiB;AAGlC,OAAO,EAAE,UAAU,EAAE,+BAAqB;AAC1C,YAAY,EAAE,UAAU,EAAE,0CAAsC;AAGhE,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,2BAAiB;AACjD,YAAY,EAAE,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,2BAAuB;AAGvE,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,+BAAqB;AACxD,YAAY,EAAE,eAAe,EAAE,+BAAqB;AAGpD,OAAO,EAAE,iBAAiB,EAAE,+BAAqB"}
|
package/dist/js/index.mjs
CHANGED
|
@@ -6,4 +6,6 @@ export { brandColor } from "./brandColor/index.mjs";
|
|
|
6
6
|
export { lightTheme, darkTheme } from "./themes/index.mjs";
|
|
7
7
|
// Typography
|
|
8
8
|
export { typography, fontFamilies } from "./typography/index.mjs";
|
|
9
|
+
// Animations
|
|
10
|
+
export { AnimationDuration } from "./animations/index.mjs";
|
|
9
11
|
//# sourceMappingURL=index.mjs.map
|
package/dist/js/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,OAAO,EAAE,MAAM,EAAE,2BAAiB;AAElC,cAAc;AACd,OAAO,EAAE,UAAU,EAAE,+BAAqB;AAG1C,SAAS;AACT,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,2BAAiB;AAGjD,aAAa;AACb,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,+BAAqB","sourcesContent":["// DEPRECATED in favor of importing lightTheme and darkTheme\nexport { colors } from './colors';\n\n// Brand Color\nexport { brandColor } from './brandColor';\nexport type { BrandColor } from './brandColor/brandColor.types';\n\n// Themes\nexport { lightTheme, darkTheme } from './themes';\nexport type { Theme, ThemeColors, ThemeShadows } from './themes/types';\n\n// Typography\nexport { typography, fontFamilies } from './typography';\nexport type { ThemeTypography } from './typography';\n"]}
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/js/index.ts"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,OAAO,EAAE,MAAM,EAAE,2BAAiB;AAElC,cAAc;AACd,OAAO,EAAE,UAAU,EAAE,+BAAqB;AAG1C,SAAS;AACT,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,2BAAiB;AAGjD,aAAa;AACb,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,+BAAqB;AAGxD,aAAa;AACb,OAAO,EAAE,iBAAiB,EAAE,+BAAqB","sourcesContent":["// DEPRECATED in favor of importing lightTheme and darkTheme\nexport { colors } from './colors';\n\n// Brand Color\nexport { brandColor } from './brandColor';\nexport type { BrandColor } from './brandColor/brandColor.types';\n\n// Themes\nexport { lightTheme, darkTheme } from './themes';\nexport type { Theme, ThemeColors, ThemeShadows } from './themes/types';\n\n// Typography\nexport { typography, fontFamilies } from './typography';\nexport type { ThemeTypography } from './typography';\n\n// Animations\nexport { AnimationDuration } from './animations';\n"]}
|