@fluentui/react-theme 0.0.0-nightlya0ab3454ed20211208.1 → 0.0.0-nightlya0aef7969220220228.1

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.
Files changed (94) hide show
  1. package/CHANGELOG.json +84 -4
  2. package/CHANGELOG.md +28 -5
  3. package/dist/react-theme.d.ts +62 -51
  4. package/lib/alias/dark.js +6 -3
  5. package/lib/alias/dark.js.map +1 -1
  6. package/lib/alias/highContrast.js +7 -4
  7. package/lib/alias/highContrast.js.map +1 -1
  8. package/lib/alias/light.js +5 -2
  9. package/lib/alias/light.js.map +1 -1
  10. package/lib/alias/teamsDark.js +6 -3
  11. package/lib/alias/teamsDark.js.map +1 -1
  12. package/lib/global/borderRadius.js.map +1 -1
  13. package/lib/global/brandColors.js.map +1 -1
  14. package/lib/global/colors.js.map +1 -1
  15. package/lib/global/fonts.js.map +1 -1
  16. package/lib/global/index.js.map +1 -1
  17. package/lib/global/strokeWidths.js.map +1 -1
  18. package/lib/index.d.ts +2 -0
  19. package/lib/index.js +2 -0
  20. package/lib/index.js.map +1 -1
  21. package/lib/themeToTokensObject.d.ts +10 -0
  22. package/lib/themeToTokensObject.js +19 -0
  23. package/lib/themeToTokensObject.js.map +1 -0
  24. package/lib/themes/index.js.map +1 -1
  25. package/lib/themes/teams/darkTheme.js.map +1 -1
  26. package/lib/themes/teams/highContrastTheme.js.map +1 -1
  27. package/lib/themes/teams/index.js.map +1 -1
  28. package/lib/themes/teams/lightTheme.js.map +1 -1
  29. package/lib/themes/web/darkTheme.js.map +1 -1
  30. package/lib/themes/web/highContrastTheme.js.map +1 -1
  31. package/lib/themes/web/index.js.map +1 -1
  32. package/lib/themes/web/lightTheme.js.map +1 -1
  33. package/lib/tokens.d.ts +2 -0
  34. package/lib/tokens.js +687 -0
  35. package/lib/tokens.js.map +1 -0
  36. package/lib/types.d.ts +50 -49
  37. package/lib/types.js.map +1 -1
  38. package/lib/utils/createDarkTheme.js.map +1 -1
  39. package/lib/utils/createHighContrastTheme.js.map +1 -1
  40. package/lib/utils/createLightTheme.js.map +1 -1
  41. package/lib/utils/createTeamsDarkTheme.js.map +1 -1
  42. package/lib/utils/index.d.ts +0 -1
  43. package/lib/utils/index.js +0 -1
  44. package/lib/utils/index.js.map +1 -1
  45. package/lib/utils/shadows.js.map +1 -1
  46. package/lib-commonjs/alias/dark.js +6 -3
  47. package/lib-commonjs/alias/dark.js.map +1 -1
  48. package/lib-commonjs/alias/highContrast.js +6 -3
  49. package/lib-commonjs/alias/highContrast.js.map +1 -1
  50. package/lib-commonjs/alias/light.js +5 -2
  51. package/lib-commonjs/alias/light.js.map +1 -1
  52. package/lib-commonjs/alias/teamsDark.js +6 -3
  53. package/lib-commonjs/alias/teamsDark.js.map +1 -1
  54. package/lib-commonjs/global/borderRadius.js.map +1 -1
  55. package/lib-commonjs/global/brandColors.js.map +1 -1
  56. package/lib-commonjs/global/colors.js.map +1 -1
  57. package/lib-commonjs/global/fonts.js.map +1 -1
  58. package/lib-commonjs/global/index.js.map +1 -1
  59. package/lib-commonjs/global/strokeWidths.js.map +1 -1
  60. package/lib-commonjs/index.d.ts +2 -0
  61. package/lib-commonjs/index.js +19 -0
  62. package/lib-commonjs/index.js.map +1 -1
  63. package/lib-commonjs/themeToTokensObject.d.ts +10 -0
  64. package/lib-commonjs/themeToTokensObject.js +28 -0
  65. package/lib-commonjs/themeToTokensObject.js.map +1 -0
  66. package/lib-commonjs/themes/index.js.map +1 -1
  67. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -1
  68. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -1
  69. package/lib-commonjs/themes/teams/index.js.map +1 -1
  70. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -1
  71. package/lib-commonjs/themes/web/darkTheme.js.map +1 -1
  72. package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -1
  73. package/lib-commonjs/themes/web/index.js.map +1 -1
  74. package/lib-commonjs/themes/web/lightTheme.js.map +1 -1
  75. package/lib-commonjs/tokens.d.ts +2 -0
  76. package/lib-commonjs/tokens.js +693 -0
  77. package/lib-commonjs/tokens.js.map +1 -0
  78. package/lib-commonjs/types.d.ts +50 -49
  79. package/lib-commonjs/types.js.map +1 -1
  80. package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
  81. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
  82. package/lib-commonjs/utils/createLightTheme.js.map +1 -1
  83. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
  84. package/lib-commonjs/utils/index.d.ts +0 -1
  85. package/lib-commonjs/utils/index.js +0 -10
  86. package/lib-commonjs/utils/index.js.map +1 -1
  87. package/lib-commonjs/utils/shadows.js.map +1 -1
  88. package/package.json +3 -3
  89. package/lib/utils/mergeThemes.d.ts +0 -2
  90. package/lib/utils/mergeThemes.js +0 -15
  91. package/lib/utils/mergeThemes.js.map +0 -1
  92. package/lib-commonjs/utils/mergeThemes.d.ts +0 -2
  93. package/lib-commonjs/utils/mergeThemes.js +0 -24
  94. package/lib-commonjs/utils/mergeThemes.js.map +0 -1
@@ -3,10 +3,29 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
+ exports.tokens = exports.themeToTokensObject = void 0;
6
7
 
7
8
  const tslib_1 = /*#__PURE__*/require("tslib");
8
9
 
9
10
  tslib_1.__exportStar(require("./themes/index"), exports);
10
11
 
11
12
  tslib_1.__exportStar(require("./utils/index"), exports);
13
+
14
+ var themeToTokensObject_1 = /*#__PURE__*/require("./themeToTokensObject");
15
+
16
+ Object.defineProperty(exports, "themeToTokensObject", {
17
+ enumerable: true,
18
+ get: function () {
19
+ return themeToTokensObject_1.themeToTokensObject;
20
+ }
21
+ });
22
+
23
+ var tokens_1 = /*#__PURE__*/require("./tokens");
24
+
25
+ Object.defineProperty(exports, "tokens", {
26
+ enumerable: true,
27
+ get: function () {
28
+ return tokens_1.tokens;
29
+ }
30
+ });
12
31
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,gBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA","sourceRoot":""}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,gBAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA;;AAEA,IAAA,qBAAA,gBAAA,OAAA,CAAA,uBAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,qBAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,qBAAA,CAAA,mBAAA;AAAmB;AAAnB,CAAA;;AACT,IAAA,QAAA,gBAAA,OAAA,CAAA,UAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,QAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,QAAA,CAAA,MAAA;AAAM;AAAN,CAAA","sourcesContent":["export * from './themes/index';\nexport * from './utils/index';\n\nexport { themeToTokensObject } from './themeToTokensObject';\nexport { tokens } from './tokens';\n\nexport type {\n Brands,\n BrandVariants,\n FontSizeTokens,\n FontWeightTokens,\n LineHeightTokens,\n BorderRadiusTokens,\n StrokeWidthTokens,\n ShadowTokens,\n ShadowBrandTokens,\n FontFamilyTokens,\n ColorPaletteTokens,\n ColorPaletteDarkRed,\n ColorPaletteBurgundy,\n ColorPaletteCranberry,\n ColorPaletteRed,\n ColorPaletteDarkOrange,\n ColorPaletteBronze,\n ColorPalettePumpkin,\n ColorPaletteOrange,\n ColorPalettePeach,\n ColorPaletteMarigold,\n ColorPaletteYellow,\n ColorPaletteGold,\n ColorPaletteBrass,\n ColorPaletteBrown,\n ColorPaletteDarkBrown,\n ColorPaletteLime,\n ColorPaletteForest,\n ColorPaletteSeafoam,\n ColorPaletteLightGreen,\n ColorPaletteGreen,\n ColorPaletteDarkGreen,\n ColorPaletteLightTeal,\n ColorPaletteTeal,\n ColorPaletteDarkTeal,\n ColorPaletteCyan,\n ColorPaletteSteel,\n ColorPaletteLightBlue,\n ColorPaletteBlue,\n ColorPaletteRoyalBlue,\n ColorPaletteDarkBlue,\n ColorPaletteCornflower,\n ColorPaletteNavy,\n ColorPaletteLavender,\n ColorPalettePurple,\n ColorPaletteDarkPurple,\n ColorPaletteOrchid,\n ColorPaletteGrape,\n ColorPaletteBerry,\n ColorPaletteLilac,\n ColorPalettePink,\n ColorPaletteHotPink,\n ColorPaletteMagenta,\n ColorPalettePlum,\n ColorPaletteBeige,\n ColorPaletteMink,\n ColorPaletteSilver,\n ColorPalettePlatinum,\n ColorPaletteAnchor,\n ColorPaletteCharcoal,\n ColorTokens,\n PartialTheme,\n Theme,\n} from './types';\n"],"sourceRoot":"../src/"}
@@ -0,0 +1,10 @@
1
+ import { Theme } from './types';
2
+ /**
3
+ * Programmatically generates a tokens to css variables mapping object from the keys in a theme.
4
+ * This helps with ease of use as a user of a custom theme does not have to manually construct this object, but it could
5
+ * affect tree-shaking since bundlers do not know the shape of the output.
6
+ *
7
+ * @param theme - Theme from which to get the keys to generate the tokens to css variables mapping object
8
+ * @returns Tokens to css variables mapping object corresponding to the passed theme
9
+ */
10
+ export declare function themeToTokensObject<TTheme extends Theme>(theme: TTheme): Record<keyof TTheme, string>;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.themeToTokensObject = void 0;
7
+ /**
8
+ * Programmatically generates a tokens to css variables mapping object from the keys in a theme.
9
+ * This helps with ease of use as a user of a custom theme does not have to manually construct this object, but it could
10
+ * affect tree-shaking since bundlers do not know the shape of the output.
11
+ *
12
+ * @param theme - Theme from which to get the keys to generate the tokens to css variables mapping object
13
+ * @returns Tokens to css variables mapping object corresponding to the passed theme
14
+ */
15
+
16
+ function themeToTokensObject(theme) {
17
+ const tokens = {};
18
+ const keys = Object.keys(theme);
19
+
20
+ for (const key of keys) {
21
+ tokens[key] = `var(--${key})`;
22
+ }
23
+
24
+ return tokens;
25
+ }
26
+
27
+ exports.themeToTokensObject = themeToTokensObject;
28
+ //# sourceMappingURL=themeToTokensObject.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["themeToTokensObject.ts"],"names":[],"mappings":";;;;;;AAEA;;;;;;;AAOG;;AACH,SAAgB,mBAAhB,CAA0D,KAA1D,EAAuE;AACrE,QAAM,MAAM,GAAG,EAAf;AACA,QAAM,IAAI,GAAG,MAAM,CAAC,IAAP,CAAY,KAAZ,CAAb;;AACA,OAAK,MAAM,GAAX,IAAkB,IAAlB,EAAwB;AACtB,IAAA,MAAM,CAAC,GAAD,CAAN,GAAc,SAAS,GAAG,GAA1B;AACD;;AACD,SAAO,MAAP;AACD;;AAPD,OAAA,CAAA,mBAAA,GAAA,mBAAA","sourcesContent":["import { Theme } from './types';\n\n/**\n * Programmatically generates a tokens to css variables mapping object from the keys in a theme.\n * This helps with ease of use as a user of a custom theme does not have to manually construct this object, but it could\n * affect tree-shaking since bundlers do not know the shape of the output.\n *\n * @param theme - Theme from which to get the keys to generate the tokens to css variables mapping object\n * @returns Tokens to css variables mapping object corresponding to the passed theme\n */\nexport function themeToTokensObject<TTheme extends Theme>(theme: TTheme): Record<keyof TTheme, string> {\n const tokens = {} as Record<keyof TTheme, string>;\n const keys = Object.keys(theme) as (keyof TTheme)[];\n for (const key of keys) {\n tokens[key] = `var(--${key})`;\n }\n return tokens;\n}\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/themes/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,aAAA,CAAA,EAAA,OAAA","sourceRoot":""}
1
+ {"version":3,"sources":["themes/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,aAAA,CAAA,EAAA,OAAA","sourcesContent":["export * from './teams/index';\nexport * from './web/index';\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/teams/darkTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,sBAAA,gBAAA,OAAA,CAAA,kCAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,cAAA,gBAAwB,sBAAA,CAAA,oBAAA,CAAqB,aAAA,CAAA,UAArB,CAAxB","sourceRoot":""}
1
+ {"version":3,"sources":["themes/teams/darkTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,sBAAA,gBAAA,OAAA,CAAA,kCAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,cAAA,gBAAwB,sBAAA,CAAA,oBAAA,CAAqB,aAAA,CAAA,UAArB,CAAxB","sourcesContent":["import { createTeamsDarkTheme } from '../../utils/createTeamsDarkTheme';\nimport { brandTeams } from '../../global/brandColors';\nimport type { Theme } from '../../types';\n\nexport const teamsDarkTheme: Theme = createTeamsDarkTheme(brandTeams);\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/teams/highContrastTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,yBAAA,gBAAA,OAAA,CAAA,qCAAA,CAAA;;AAGa,OAAA,CAAA,sBAAA,gBAAgC,yBAAA,CAAA,uBAAA,EAAhC","sourceRoot":""}
1
+ {"version":3,"sources":["themes/teams/highContrastTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,yBAAA,gBAAA,OAAA,CAAA,qCAAA,CAAA;;AAGa,OAAA,CAAA,sBAAA,gBAAgC,yBAAA,CAAA,uBAAA,EAAhC","sourcesContent":["import { createHighContrastTheme } from '../../utils/createHighContrastTheme';\nimport type { Theme } from '../../types';\n\nexport const teamsHighContrastTheme: Theme = createHighContrastTheme();\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/teams/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,aAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,qBAAA,CAAA,EAAA,OAAA","sourceRoot":""}
1
+ {"version":3,"sources":["themes/teams/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,aAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,qBAAA,CAAA,EAAA,OAAA","sourcesContent":["export * from './lightTheme';\nexport * from './darkTheme';\nexport * from './highContrastTheme';\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/teams/lightTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,kBAAA,gBAAA,OAAA,CAAA,8BAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,eAAA,gBAAyB,kBAAA,CAAA,gBAAA,CAAiB,aAAA,CAAA,UAAjB,CAAzB","sourceRoot":""}
1
+ {"version":3,"sources":["themes/teams/lightTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,kBAAA,gBAAA,OAAA,CAAA,8BAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,eAAA,gBAAyB,kBAAA,CAAA,gBAAA,CAAiB,aAAA,CAAA,UAAjB,CAAzB","sourcesContent":["import { createLightTheme } from '../../utils/createLightTheme';\nimport { brandTeams } from '../../global/brandColors';\nimport type { Theme } from '../../types';\n\nexport const teamsLightTheme: Theme = createLightTheme(brandTeams);\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/web/darkTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,iBAAA,gBAAA,OAAA,CAAA,6BAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,YAAA,gBAAsB,iBAAA,CAAA,eAAA,CAAgB,aAAA,CAAA,QAAhB,CAAtB","sourceRoot":""}
1
+ {"version":3,"sources":["themes/web/darkTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,iBAAA,gBAAA,OAAA,CAAA,6BAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,YAAA,gBAAsB,iBAAA,CAAA,eAAA,CAAgB,aAAA,CAAA,QAAhB,CAAtB","sourcesContent":["import { createDarkTheme } from '../../utils/createDarkTheme';\nimport { brandWeb } from '../../global/brandColors';\nimport type { Theme } from '../../types';\n\nexport const webDarkTheme: Theme = createDarkTheme(brandWeb);\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/web/highContrastTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,yBAAA,gBAAA,OAAA,CAAA,qCAAA,CAAA;;AAGa,OAAA,CAAA,oBAAA,gBAA8B,yBAAA,CAAA,uBAAA,EAA9B","sourceRoot":""}
1
+ {"version":3,"sources":["themes/web/highContrastTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,yBAAA,gBAAA,OAAA,CAAA,qCAAA,CAAA;;AAGa,OAAA,CAAA,oBAAA,gBAA8B,yBAAA,CAAA,uBAAA,EAA9B","sourcesContent":["import { createHighContrastTheme } from '../../utils/createHighContrastTheme';\nimport type { Theme } from '../../types';\n\nexport const webHighContrastTheme: Theme = createHighContrastTheme();\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/web/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,aAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,qBAAA,CAAA,EAAA,OAAA","sourceRoot":""}
1
+ {"version":3,"sources":["themes/web/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,aAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,qBAAA,CAAA,EAAA,OAAA","sourcesContent":["export * from './lightTheme';\nexport * from './darkTheme';\nexport * from './highContrastTheme';\n"],"sourceRoot":"../src/"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/themes/web/lightTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,kBAAA,gBAAA,OAAA,CAAA,8BAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,aAAA,gBAAuB,kBAAA,CAAA,gBAAA,CAAiB,aAAA,CAAA,QAAjB,CAAvB","sourceRoot":""}
1
+ {"version":3,"sources":["themes/web/lightTheme.ts"],"names":[],"mappings":";;;;;;;AAAA,MAAA,kBAAA,gBAAA,OAAA,CAAA,8BAAA,CAAA;;AACA,MAAA,aAAA,gBAAA,OAAA,CAAA,0BAAA,CAAA;;AAGa,OAAA,CAAA,aAAA,gBAAuB,kBAAA,CAAA,gBAAA,CAAiB,aAAA,CAAA,QAAjB,CAAvB","sourcesContent":["import { createLightTheme } from '../../utils/createLightTheme';\nimport { brandWeb } from '../../global/brandColors';\nimport type { Theme } from '../../types';\n\nexport const webLightTheme: Theme = createLightTheme(brandWeb);\n"],"sourceRoot":"../src/"}
@@ -0,0 +1,2 @@
1
+ import type { Theme } from './types';
2
+ export declare const tokens: Record<keyof Theme, string>;