@planningcenter/doxy 0.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.
Files changed (47) hide show
  1. package/README.md +118 -0
  2. package/dist/build-output/ts/index.d.ts +10 -0
  3. package/dist/build-output/ts/index.d.ts.map +1 -0
  4. package/dist/build-output/ts/index.js +6 -0
  5. package/dist/build-output/ts/index.js.map +1 -0
  6. package/dist/build-output/ts/react-native-tokens-dark.d.ts +81 -0
  7. package/dist/build-output/ts/react-native-tokens-dark.d.ts.map +1 -0
  8. package/dist/build-output/ts/react-native-tokens-dark.js +62 -0
  9. package/dist/build-output/ts/react-native-tokens-dark.js.map +1 -0
  10. package/dist/build-output/ts/react-native-tokens-light.d.ts +81 -0
  11. package/dist/build-output/ts/react-native-tokens-light.d.ts.map +1 -0
  12. package/dist/build-output/ts/react-native-tokens-light.js +62 -0
  13. package/dist/build-output/ts/react-native-tokens-light.js.map +1 -0
  14. package/dist/build-output/ts/themeable-web-gradient-tokens.d.ts +15 -0
  15. package/dist/build-output/ts/themeable-web-gradient-tokens.d.ts.map +1 -0
  16. package/dist/build-output/ts/themeable-web-gradient-tokens.js +16 -0
  17. package/dist/build-output/ts/themeable-web-gradient-tokens.js.map +1 -0
  18. package/dist/build-output/ts/tokens-by-theme-set.d.ts +8 -0
  19. package/dist/build-output/ts/tokens-by-theme-set.d.ts.map +1 -0
  20. package/dist/build-output/ts/tokens-by-theme-set.js +9 -0
  21. package/dist/build-output/ts/tokens-by-theme-set.js.map +1 -0
  22. package/dist/build-output/ts/tokens.d.ts +60 -0
  23. package/dist/build-output/ts/tokens.d.ts.map +1 -0
  24. package/dist/build-output/ts/tokens.js +62 -0
  25. package/dist/build-output/ts/tokens.js.map +1 -0
  26. package/dist/build-output/ts/types/react-native-types.d.ts +85 -0
  27. package/dist/build-output/ts/types/react-native-types.d.ts.map +1 -0
  28. package/dist/index.css +173 -0
  29. package/dist/index.css.map +1 -0
  30. package/dist/index.d.ts +8 -0
  31. package/dist/index.d.ts.map +1 -0
  32. package/dist/index.js +6 -0
  33. package/dist/index.js.map +1 -0
  34. package/dist/jsTokens.d.ts +3 -0
  35. package/dist/jsTokens.d.ts.map +1 -0
  36. package/dist/jsTokens.js +6 -0
  37. package/dist/jsTokens.js.map +1 -0
  38. package/dist/tokens-dark.css +116 -0
  39. package/dist/tokens-dark.css.map +1 -0
  40. package/dist/tokens-dark.js +3 -0
  41. package/dist/tokens-deprecated.css +2 -0
  42. package/dist/tokens-deprecated.css.map +1 -0
  43. package/dist/tokens-deprecated.js +3 -0
  44. package/dist/tokens.css +173 -0
  45. package/dist/tokens.css.map +1 -0
  46. package/dist/tokens.js +3 -0
  47. package/package.json +104 -0
package/README.md ADDED
@@ -0,0 +1,118 @@
1
+ # Doxy
2
+
3
+ Doxy provides design tokens that can be shared between Church Center Web, Church Center App, and Publishing. These tokens hold atomic design decisions (eg. background color, font weight) from the Doxy Design System and ensure visual consistency across our Church Center applications.
4
+
5
+ ## Installation
6
+
7
+ ```
8
+ yarn add @planningcenter/doxy
9
+ ```
10
+
11
+ ## Links
12
+
13
+ - [Storybook](https://planningcenter.github.io/doxy)
14
+ - [Contributing](./CONTRIBUTING.md)
15
+ - [Releasing package updates](https://www.notion.so/planningcenter/Releasing-NPM-Packages-3d31bf1bbc85441a9eeb638eee5dfba8)
16
+ - [Figma (alias tokens)](https://www.figma.com/design/DLPSeBe5Owfud0iSkfQOB2/Doxy-Component-Library?node-id=1-5&t=Uy5Hof4mzJECdiA2-1)
17
+ - [Figma (color primitive tokens)](https://www.figma.com/design/1OJnbnPFEbRpgzKN1q7Yxa/Doxy-Color-Primitives?m=auto&node-id=2482-0&t=9EiAIleJqyPsZ54n-1)
18
+
19
+ ## Development scripts
20
+
21
+ ```bash
22
+ yarn build # Generates both tokens and `/dist` directory
23
+ yarn build:rollup # Generates dist directory
24
+ yarn build:tokens # Generates tokens from Style Dictionary in a `/build-output` directory
25
+ yarn build:tokens:nuke # Deletes `/build-output` and generates tokens
26
+ yarn storybook # Starts Storybook at http://localhost:6006
27
+ yarn lint # Checks eslint and prettier
28
+ yarn format # Fixes any prettier issues
29
+ yarn test # Runs vitest once
30
+ yarn test:watch # Runs vitest continually
31
+ ```
32
+
33
+ ## Alias vs Primitive Tokens
34
+
35
+ Our Figma files and Style Dictionary pipeline expects two types of tokens; primitive and alias.
36
+
37
+ - Primitive tokens represent hard-coded style values and create the underlying foundation for the alias tokens. Applications and Figma mockups don't reference primitive tokens directly.
38
+ - Alias tokens provide a way to communicate semantic meaning about a CSS value. They might reference other alias tokens or directly reference a primitive token. For colors they support both light and dark modes.
39
+
40
+ Here are some reasons one or both token types might require their JSON to be updated in `src/json/`…
41
+
42
+ - Token's name or value changed
43
+ - Token's deprecation status changed
44
+ - Token(s) get added or deleted
45
+ - Token(s) moves between collections (eg. From "color themeable" to "color")
46
+
47
+ ## Themeable Tokens
48
+
49
+ Doxy's design system includes color values that the church can customize based on its selected theme in Publishing. To reduce complexity and keep the generated token code 1-1 with Figma, the applications consuming tokens are responsible for overriding their values with the theme.
50
+
51
+ Doxy tokens helps to support this feature by providing the following utilities to applications that act as manifests of which tokens are themeable and what value to use when overriding them.
52
+
53
+ 1. [tokensByThemeSet](./src/build-output/ts/tokens-by-theme-set.ts) — This object contains any available "themes" as keys and assigns them an array of token names that should be overriden by that theme's value.
54
+ 2. [themeableWebGradientTokens](./src/build-output/ts/themeable-web-gradient-tokens.ts) — This object contains themeable gradient tokens with their light and dark mode values, making it easier to override `linear-gradient` values.
55
+
56
+ ## Importing Doxy tokens into applications
57
+
58
+ All tokens and utilities can be imported via `@planningcenter/doxy`, but common files and directories are also available via subpath imports. This is to help filter out conflicting or otherwise unnecessary assets. (eg. Avoiding CSS files within a React Native app.)
59
+
60
+ ### For Web applications
61
+
62
+ #### All CSS tokens
63
+
64
+ For most cases, this is the import to use on the web as it manages all available tokens.
65
+
66
+ ```CSS
67
+ @import "@planningcenter/doxy/tokens.css";
68
+ ```
69
+
70
+ #### Specific CSS tokens
71
+
72
+ ```CSS
73
+ @import "@planningcenter/doxy/tokens-dark.css";
74
+ ```
75
+
76
+ ```CSS
77
+ @import "@planningcenter/doxy/tokens-deprecated.css";
78
+ ```
79
+
80
+ #### Themeable web gradient tokens util
81
+
82
+ ```TS
83
+ import {} from "@planningcenter/doxy/themeable-web-gradient-tokens"
84
+ ```
85
+
86
+ ### For React Native applications
87
+
88
+ #### All tokens and utils
89
+
90
+ React Native applications like CCA should use this import because they can't process `.css` files.
91
+
92
+ ```TS
93
+ import {} from "@planningcenter/doxy/ts"
94
+ ```
95
+
96
+ #### Import specific React Native tokens & utils
97
+
98
+ ```TS
99
+ import {} from "@planningcenter/doxy/types/react-native-types"
100
+ ```
101
+
102
+ ```TS
103
+ import {} from "@planningcenter/doxy/react-native-tokens-dark"
104
+ ```
105
+
106
+ ```TS
107
+ import {} from "@planningcenter/doxy/react-native-tokens-light"
108
+ ```
109
+
110
+ ### For All applications
111
+
112
+ ```TS
113
+ import {} from "@planningcenter/doxy/tokens-by-theme-set"
114
+ ```
115
+
116
+ ## What else?
117
+
118
+ Something confusing as you're getting started? Jump in [#doxy](https://pco.slack.com/archives/CBQ8JCABG) and ask away! We'll use those questions to help guide changes to this README. 🙂
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export * from "./tokens";
5
+ export * from "./tokens-by-theme-set";
6
+ export * from "./themeable-web-gradient-tokens";
7
+ export * from "./react-native-tokens-dark";
8
+ export * from "./react-native-tokens-light";
9
+ export * from "./types/react-native-types";
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/build-output/ts/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,cAAc,UAAU,CAAA;AACxB,cAAc,uBAAuB,CAAA;AACrC,cAAc,iCAAiC,CAAA;AAC/C,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,4BAA4B,CAAA"}
@@ -0,0 +1,6 @@
1
+ export { tokens } from './tokens.js';
2
+ export { tokensByThemeSet } from './tokens-by-theme-set.js';
3
+ export { themeableWebGradientTokens } from './themeable-web-gradient-tokens.js';
4
+ export { reactNativeTokensDark } from './react-native-tokens-dark.js';
5
+ export { reactNativeTokensLight } from './react-native-tokens-light.js';
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
@@ -0,0 +1,81 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const reactNativeTokensDark: {
5
+ readonly "--d-app-fill-color-gradient-header": {
6
+ readonly stops: [{
7
+ readonly color: "#1f1f1f";
8
+ readonly position: 0;
9
+ }, {
10
+ readonly color: "#1f1f1f";
11
+ readonly position: 1;
12
+ }];
13
+ readonly type: "linear";
14
+ readonly angle: 117.90481785563077;
15
+ };
16
+ readonly "--d-fill-color-button-interaction-solid-gradient-default": {
17
+ readonly stops: [{
18
+ readonly color: "#128df3";
19
+ readonly position: 0;
20
+ }, {
21
+ readonly color: "#5dc660";
22
+ readonly position: 1;
23
+ }];
24
+ readonly type: "linear";
25
+ readonly angle: 117.90481785563077;
26
+ };
27
+ readonly "--d-fill-color-neutral-000": "hsl(0, 0%, 98%)";
28
+ readonly "--d-fill-color-neutral-010": "hsl(0, 0%, 88%)";
29
+ readonly "--d-fill-color-neutral-020": "hsl(0, 0%, 68%)";
30
+ readonly "--d-fill-color-neutral-030": "hsl(0, 0%, 50%)";
31
+ readonly "--d-fill-color-neutral-040": "hsl(0, 0%, 32%)";
32
+ readonly "--d-fill-color-neutral-050": "hsl(0, 0%, 24%)";
33
+ readonly "--d-fill-color-neutral-060": "hsl(0, 0%, 19%)";
34
+ readonly "--d-fill-color-neutral-070": "hsl(0, 0%, 17%)";
35
+ readonly "--d-fill-color-neutral-080": "hsl(0, 0%, 15%)";
36
+ readonly "--d-fill-color-neutral-090": "hsl(0, 0%, 12%)";
37
+ readonly "--d-fill-color-neutral-100": "hsl(0, 0%, 7%)";
38
+ readonly "--d-fill-color-status-error-ghost": "hsl(0, 19%, 15%)";
39
+ readonly "--d-fill-color-status-info-ghost": "hsl(210, 79%, 15%)";
40
+ readonly "--d-fill-color-status-neutral-ghost": "hsl(0, 0%, 13%)";
41
+ readonly "--d-fill-color-status-success-ghost": "hsl(120, 32%, 15%)";
42
+ readonly "--d-fill-color-status-warning-ghost": "hsl(40, 61%, 15%)";
43
+ readonly "--d-fill-color-transparency-dark-010": "hsla(0, 0%, 100%, 0.1)";
44
+ readonly "--d-fill-color-transparency-dark-020": "hsla(0, 0%, 100%, 0.2)";
45
+ readonly "--d-fill-color-transparency-dark-030": "hsla(0, 0%, 100%, 0.3)";
46
+ readonly "--d-fill-color-transparency-dark-040": "hsla(0, 0%, 100%, 0.4)";
47
+ readonly "--d-fill-color-transparency-dark-050": "hsla(0, 0%, 100%, 0.5)";
48
+ readonly "--d-fill-color-transparency-dark-060": "hsla(0, 0%, 100%, 0.6)";
49
+ readonly "--d-fill-color-transparency-dark-070": "hsla(0, 0%, 100%, 0.7)";
50
+ readonly "--d-fill-color-transparency-dark-080": "hsla(0, 0%, 100%, 0.8)";
51
+ readonly "--d-fill-color-transparency-dark-090": "hsla(0, 0%, 100%, 0.9)";
52
+ readonly "--d-fill-color-transparency-light-010": "hsla(0, 0%, 0%, 0.1)";
53
+ readonly "--d-fill-color-transparency-light-020": "hsla(0, 0%, 0%, 0.2)";
54
+ readonly "--d-fill-color-transparency-light-030": "hsla(0, 0%, 0%, 0.3)";
55
+ readonly "--d-fill-color-transparency-light-040": "hsla(0, 0%, 0%, 0.4)";
56
+ readonly "--d-fill-color-transparency-light-050": "hsla(0, 0%, 0%, 0.5)";
57
+ readonly "--d-fill-color-transparency-light-060": "hsla(0, 0%, 0%, 0.6)";
58
+ readonly "--d-fill-color-transparency-light-070": "hsla(0, 0%, 0%, 0.7)";
59
+ readonly "--d-fill-color-transparency-light-080": "hsla(0, 0%, 0%, 0.8)";
60
+ readonly "--d-fill-color-transparency-light-090": "hsla(0, 0%, 0%, 0.9)";
61
+ readonly "--d-icon-color-interaction": "hsl(174, 70%, 37%)";
62
+ readonly "--d-icon-color-status-error": "hsl(0, 68%, 54%)";
63
+ readonly "--d-icon-color-status-info": "hsl(206, 100%, 42%)";
64
+ readonly "--d-icon-color-status-neutral": "hsl(0, 0%, 81%)";
65
+ readonly "--d-icon-color-status-success": "hsl(124, 50%, 38%)";
66
+ readonly "--d-icon-color-status-warning": "hsl(36, 99%, 42%)";
67
+ readonly "--d-text-color": "hsl(0, 0%, 88%)";
68
+ readonly "--d-text-color-disabled": "hsl(0, 0%, 50%)";
69
+ readonly "--d-text-color-headline": "hsl(0, 0%, 98%)";
70
+ readonly "--d-text-color-interaction": "hsl(174, 70%, 37%)";
71
+ readonly "--d-text-color-inverted": "hsl(0, 0%, 100%)";
72
+ readonly "--d-text-color-placeholder": "hsl(0, 0%, 24%)";
73
+ readonly "--d-text-color-secondary": "hsl(0, 0%, 68%)";
74
+ readonly "--d-text-color-status-error": "hsl(0, 95%, 64%)";
75
+ readonly "--d-text-color-status-info": "hsl(206, 100%, 56%)";
76
+ readonly "--d-text-color-status-neutral": "hsl(0, 0%, 81%)";
77
+ readonly "--d-text-color-status-success": "hsl(124, 55%, 45%)";
78
+ readonly "--d-text-color-status-warning": "hsl(36, 99%, 47%)";
79
+ };
80
+ export type ReactNativeTokensDark = typeof reactNativeTokensDark;
81
+ //# sourceMappingURL=react-native-tokens-dark.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-native-tokens-dark.d.ts","sourceRoot":"","sources":["../../../src/build-output/ts/react-native-tokens-dark.ts"],"names":[],"mappings":"AAAA;;GAEG;AAKH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuDU,CAAA;AAE5C,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAA"}
@@ -0,0 +1,62 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ const reactNativeTokensDark = {
5
+ "--d-app-fill-color-gradient-header": { "stops": [{ "color": "#1f1f1f", "position": 0 }, { "color": "#1f1f1f", "position": 1 }], "type": "linear", "angle": 117.90481785563077 },
6
+ "--d-fill-color-button-interaction-solid-gradient-default": { "stops": [{ "color": "#128df3", "position": 0 }, { "color": "#5dc660", "position": 1 }], "type": "linear", "angle": 117.90481785563077 },
7
+ "--d-fill-color-neutral-000": "hsl(0, 0%, 98%)",
8
+ "--d-fill-color-neutral-010": "hsl(0, 0%, 88%)",
9
+ "--d-fill-color-neutral-020": "hsl(0, 0%, 68%)",
10
+ "--d-fill-color-neutral-030": "hsl(0, 0%, 50%)",
11
+ "--d-fill-color-neutral-040": "hsl(0, 0%, 32%)",
12
+ "--d-fill-color-neutral-050": "hsl(0, 0%, 24%)",
13
+ "--d-fill-color-neutral-060": "hsl(0, 0%, 19%)",
14
+ "--d-fill-color-neutral-070": "hsl(0, 0%, 17%)",
15
+ "--d-fill-color-neutral-080": "hsl(0, 0%, 15%)",
16
+ "--d-fill-color-neutral-090": "hsl(0, 0%, 12%)",
17
+ "--d-fill-color-neutral-100": "hsl(0, 0%, 7%)",
18
+ "--d-fill-color-status-error-ghost": "hsl(0, 19%, 15%)",
19
+ "--d-fill-color-status-info-ghost": "hsl(210, 79%, 15%)",
20
+ "--d-fill-color-status-neutral-ghost": "hsl(0, 0%, 13%)",
21
+ "--d-fill-color-status-success-ghost": "hsl(120, 32%, 15%)",
22
+ "--d-fill-color-status-warning-ghost": "hsl(40, 61%, 15%)",
23
+ "--d-fill-color-transparency-dark-010": "hsla(0, 0%, 100%, 0.1)",
24
+ "--d-fill-color-transparency-dark-020": "hsla(0, 0%, 100%, 0.2)",
25
+ "--d-fill-color-transparency-dark-030": "hsla(0, 0%, 100%, 0.3)",
26
+ "--d-fill-color-transparency-dark-040": "hsla(0, 0%, 100%, 0.4)",
27
+ "--d-fill-color-transparency-dark-050": "hsla(0, 0%, 100%, 0.5)",
28
+ "--d-fill-color-transparency-dark-060": "hsla(0, 0%, 100%, 0.6)",
29
+ "--d-fill-color-transparency-dark-070": "hsla(0, 0%, 100%, 0.7)",
30
+ "--d-fill-color-transparency-dark-080": "hsla(0, 0%, 100%, 0.8)",
31
+ "--d-fill-color-transparency-dark-090": "hsla(0, 0%, 100%, 0.9)",
32
+ "--d-fill-color-transparency-light-010": "hsla(0, 0%, 0%, 0.1)",
33
+ "--d-fill-color-transparency-light-020": "hsla(0, 0%, 0%, 0.2)",
34
+ "--d-fill-color-transparency-light-030": "hsla(0, 0%, 0%, 0.3)",
35
+ "--d-fill-color-transparency-light-040": "hsla(0, 0%, 0%, 0.4)",
36
+ "--d-fill-color-transparency-light-050": "hsla(0, 0%, 0%, 0.5)",
37
+ "--d-fill-color-transparency-light-060": "hsla(0, 0%, 0%, 0.6)",
38
+ "--d-fill-color-transparency-light-070": "hsla(0, 0%, 0%, 0.7)",
39
+ "--d-fill-color-transparency-light-080": "hsla(0, 0%, 0%, 0.8)",
40
+ "--d-fill-color-transparency-light-090": "hsla(0, 0%, 0%, 0.9)",
41
+ "--d-icon-color-interaction": "hsl(174, 70%, 37%)",
42
+ "--d-icon-color-status-error": "hsl(0, 68%, 54%)",
43
+ "--d-icon-color-status-info": "hsl(206, 100%, 42%)",
44
+ "--d-icon-color-status-neutral": "hsl(0, 0%, 81%)",
45
+ "--d-icon-color-status-success": "hsl(124, 50%, 38%)",
46
+ "--d-icon-color-status-warning": "hsl(36, 99%, 42%)",
47
+ "--d-text-color": "hsl(0, 0%, 88%)",
48
+ "--d-text-color-disabled": "hsl(0, 0%, 50%)",
49
+ "--d-text-color-headline": "hsl(0, 0%, 98%)",
50
+ "--d-text-color-interaction": "hsl(174, 70%, 37%)",
51
+ "--d-text-color-inverted": "hsl(0, 0%, 100%)",
52
+ "--d-text-color-placeholder": "hsl(0, 0%, 24%)",
53
+ "--d-text-color-secondary": "hsl(0, 0%, 68%)",
54
+ "--d-text-color-status-error": "hsl(0, 95%, 64%)",
55
+ "--d-text-color-status-info": "hsl(206, 100%, 56%)",
56
+ "--d-text-color-status-neutral": "hsl(0, 0%, 81%)",
57
+ "--d-text-color-status-success": "hsl(124, 55%, 45%)",
58
+ "--d-text-color-status-warning": "hsl(36, 99%, 47%)"
59
+ };
60
+
61
+ export { reactNativeTokensDark };
62
+ //# sourceMappingURL=react-native-tokens-dark.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-native-tokens-dark.js","sources":["../../../src/build-output/ts/react-native-tokens-dark.ts"],"sourcesContent":["/**\n * Do not edit directly, this file was auto-generated.\n */\n\n\nimport type { ReactNativeTokensSchema } from \"./types/react-native-types\"\n\nexport const reactNativeTokensDark = {\n \"--d-app-fill-color-gradient-header\": {\"stops\":[{\"color\":\"#1f1f1f\",\"position\":0},{\"color\":\"#1f1f1f\",\"position\":1}],\"type\":\"linear\",\"angle\":117.90481785563077},\n \"--d-fill-color-button-interaction-solid-gradient-default\": {\"stops\":[{\"color\":\"#128df3\",\"position\":0},{\"color\":\"#5dc660\",\"position\":1}],\"type\":\"linear\",\"angle\":117.90481785563077},\n \"--d-fill-color-neutral-000\": \"hsl(0, 0%, 98%)\",\n \"--d-fill-color-neutral-010\": \"hsl(0, 0%, 88%)\",\n \"--d-fill-color-neutral-020\": \"hsl(0, 0%, 68%)\",\n \"--d-fill-color-neutral-030\": \"hsl(0, 0%, 50%)\",\n \"--d-fill-color-neutral-040\": \"hsl(0, 0%, 32%)\",\n \"--d-fill-color-neutral-050\": \"hsl(0, 0%, 24%)\",\n \"--d-fill-color-neutral-060\": \"hsl(0, 0%, 19%)\",\n \"--d-fill-color-neutral-070\": \"hsl(0, 0%, 17%)\",\n \"--d-fill-color-neutral-080\": \"hsl(0, 0%, 15%)\",\n \"--d-fill-color-neutral-090\": \"hsl(0, 0%, 12%)\",\n \"--d-fill-color-neutral-100\": \"hsl(0, 0%, 7%)\",\n \"--d-fill-color-status-error-ghost\": \"hsl(0, 19%, 15%)\",\n \"--d-fill-color-status-info-ghost\": \"hsl(210, 79%, 15%)\",\n \"--d-fill-color-status-neutral-ghost\": \"hsl(0, 0%, 13%)\",\n \"--d-fill-color-status-success-ghost\": \"hsl(120, 32%, 15%)\",\n \"--d-fill-color-status-warning-ghost\": \"hsl(40, 61%, 15%)\",\n \"--d-fill-color-transparency-dark-010\": \"hsla(0, 0%, 100%, 0.1)\",\n \"--d-fill-color-transparency-dark-020\": \"hsla(0, 0%, 100%, 0.2)\",\n \"--d-fill-color-transparency-dark-030\": \"hsla(0, 0%, 100%, 0.3)\",\n \"--d-fill-color-transparency-dark-040\": \"hsla(0, 0%, 100%, 0.4)\",\n \"--d-fill-color-transparency-dark-050\": \"hsla(0, 0%, 100%, 0.5)\",\n \"--d-fill-color-transparency-dark-060\": \"hsla(0, 0%, 100%, 0.6)\",\n \"--d-fill-color-transparency-dark-070\": \"hsla(0, 0%, 100%, 0.7)\",\n \"--d-fill-color-transparency-dark-080\": \"hsla(0, 0%, 100%, 0.8)\",\n \"--d-fill-color-transparency-dark-090\": \"hsla(0, 0%, 100%, 0.9)\",\n \"--d-fill-color-transparency-light-010\": \"hsla(0, 0%, 0%, 0.1)\",\n \"--d-fill-color-transparency-light-020\": \"hsla(0, 0%, 0%, 0.2)\",\n \"--d-fill-color-transparency-light-030\": \"hsla(0, 0%, 0%, 0.3)\",\n \"--d-fill-color-transparency-light-040\": \"hsla(0, 0%, 0%, 0.4)\",\n \"--d-fill-color-transparency-light-050\": \"hsla(0, 0%, 0%, 0.5)\",\n \"--d-fill-color-transparency-light-060\": \"hsla(0, 0%, 0%, 0.6)\",\n \"--d-fill-color-transparency-light-070\": \"hsla(0, 0%, 0%, 0.7)\",\n \"--d-fill-color-transparency-light-080\": \"hsla(0, 0%, 0%, 0.8)\",\n \"--d-fill-color-transparency-light-090\": \"hsla(0, 0%, 0%, 0.9)\",\n \"--d-icon-color-interaction\": \"hsl(174, 70%, 37%)\",\n \"--d-icon-color-status-error\": \"hsl(0, 68%, 54%)\",\n \"--d-icon-color-status-info\": \"hsl(206, 100%, 42%)\",\n \"--d-icon-color-status-neutral\": \"hsl(0, 0%, 81%)\",\n \"--d-icon-color-status-success\": \"hsl(124, 50%, 38%)\",\n \"--d-icon-color-status-warning\": \"hsl(36, 99%, 42%)\",\n \"--d-text-color\": \"hsl(0, 0%, 88%)\",\n \"--d-text-color-disabled\": \"hsl(0, 0%, 50%)\",\n \"--d-text-color-headline\": \"hsl(0, 0%, 98%)\",\n \"--d-text-color-interaction\": \"hsl(174, 70%, 37%)\",\n \"--d-text-color-inverted\": \"hsl(0, 0%, 100%)\",\n \"--d-text-color-placeholder\": \"hsl(0, 0%, 24%)\",\n \"--d-text-color-secondary\": \"hsl(0, 0%, 68%)\",\n \"--d-text-color-status-error\": \"hsl(0, 95%, 64%)\",\n \"--d-text-color-status-info\": \"hsl(206, 100%, 56%)\",\n \"--d-text-color-status-neutral\": \"hsl(0, 0%, 81%)\",\n \"--d-text-color-status-success\": \"hsl(124, 55%, 45%)\",\n \"--d-text-color-status-warning\": \"hsl(36, 99%, 47%)\"\n} as const satisfies ReactNativeTokensSchema\n\nexport type ReactNativeTokensDark = typeof reactNativeTokensDark\n"],"names":[],"mappings":"AAAA;;AAEG;AAKI,MAAM,qBAAqB,GAAG;AACnC,IAAA,oCAAoC,EAAE,EAAC,OAAO,EAAC,CAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,EAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,CAAC,EAAC,MAAM,EAAC,QAAQ,EAAC,OAAO,EAAC,kBAAkB,EAAC;AAC9J,IAAA,0DAA0D,EAAE,EAAC,OAAO,EAAC,CAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,EAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,CAAC,EAAC,MAAM,EAAC,QAAQ,EAAC,OAAO,EAAC,kBAAkB,EAAC;AACpL,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,gBAAgB;AAC9C,IAAA,mCAAmC,EAAE,kBAAkB;AACvD,IAAA,kCAAkC,EAAE,oBAAoB;AACxD,IAAA,qCAAqC,EAAE,iBAAiB;AACxD,IAAA,qCAAqC,EAAE,oBAAoB;AAC3D,IAAA,qCAAqC,EAAE,mBAAmB;AAC1D,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,sCAAsC,EAAE,wBAAwB;AAChE,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,uCAAuC,EAAE,sBAAsB;AAC/D,IAAA,4BAA4B,EAAE,oBAAoB;AAClD,IAAA,6BAA6B,EAAE,kBAAkB;AACjD,IAAA,4BAA4B,EAAE,qBAAqB;AACnD,IAAA,+BAA+B,EAAE,iBAAiB;AAClD,IAAA,+BAA+B,EAAE,oBAAoB;AACrD,IAAA,+BAA+B,EAAE,mBAAmB;AACpD,IAAA,gBAAgB,EAAE,iBAAiB;AACnC,IAAA,yBAAyB,EAAE,iBAAiB;AAC5C,IAAA,yBAAyB,EAAE,iBAAiB;AAC5C,IAAA,4BAA4B,EAAE,oBAAoB;AAClD,IAAA,yBAAyB,EAAE,kBAAkB;AAC7C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,0BAA0B,EAAE,iBAAiB;AAC7C,IAAA,6BAA6B,EAAE,kBAAkB;AACjD,IAAA,4BAA4B,EAAE,qBAAqB;AACnD,IAAA,+BAA+B,EAAE,iBAAiB;AAClD,IAAA,+BAA+B,EAAE,oBAAoB;AACrD,IAAA,+BAA+B,EAAE;;;;;"}
@@ -0,0 +1,81 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const reactNativeTokensLight: {
5
+ readonly "--d-app-fill-color-gradient-header": {
6
+ readonly stops: [{
7
+ readonly color: "#42a5f5";
8
+ readonly position: 0;
9
+ }, {
10
+ readonly color: "#54b0aa";
11
+ readonly position: 1;
12
+ }];
13
+ readonly type: "linear";
14
+ readonly angle: 117.90481785563077;
15
+ };
16
+ readonly "--d-fill-color-button-interaction-solid-gradient-default": {
17
+ readonly stops: [{
18
+ readonly color: "#42a5f5";
19
+ readonly position: 0;
20
+ }, {
21
+ readonly color: "#68bb6a";
22
+ readonly position: 1;
23
+ }];
24
+ readonly type: "linear";
25
+ readonly angle: 117.90481785563077;
26
+ };
27
+ readonly "--d-fill-color-neutral-000": "hsl(0, 0%, 12%)";
28
+ readonly "--d-fill-color-neutral-010": "hsl(0, 0%, 24%)";
29
+ readonly "--d-fill-color-neutral-020": "hsl(0, 0%, 45%)";
30
+ readonly "--d-fill-color-neutral-030": "hsl(0, 0%, 58%)";
31
+ readonly "--d-fill-color-neutral-040": "hsl(0, 0%, 81%)";
32
+ readonly "--d-fill-color-neutral-050": "hsl(0, 0%, 88%)";
33
+ readonly "--d-fill-color-neutral-060": "hsl(0, 0%, 93%)";
34
+ readonly "--d-fill-color-neutral-070": "hsl(0, 0%, 95%)";
35
+ readonly "--d-fill-color-neutral-080": "hsl(0, 0%, 97%)";
36
+ readonly "--d-fill-color-neutral-090": "hsl(0, 0%, 98%)";
37
+ readonly "--d-fill-color-neutral-100": "hsl(0, 0%, 100%)";
38
+ readonly "--d-fill-color-status-error-ghost": "hsl(0, 80%, 96%)";
39
+ readonly "--d-fill-color-status-info-ghost": "hsl(210, 100%, 96%)";
40
+ readonly "--d-fill-color-status-neutral-ghost": "hsl(0, 0%, 95%)";
41
+ readonly "--d-fill-color-status-success-ghost": "hsl(120, 33%, 96%)";
42
+ readonly "--d-fill-color-status-warning-ghost": "hsl(40, 90%, 96%)";
43
+ readonly "--d-fill-color-transparency-dark-010": "hsla(0, 0%, 0%, 0.1)";
44
+ readonly "--d-fill-color-transparency-dark-020": "hsla(0, 0%, 0%, 0.2)";
45
+ readonly "--d-fill-color-transparency-dark-030": "hsla(0, 0%, 0%, 0.3)";
46
+ readonly "--d-fill-color-transparency-dark-040": "hsla(0, 0%, 0%, 0.4)";
47
+ readonly "--d-fill-color-transparency-dark-050": "hsla(0, 0%, 0%, 0.5)";
48
+ readonly "--d-fill-color-transparency-dark-060": "hsla(0, 0%, 0%, 0.6)";
49
+ readonly "--d-fill-color-transparency-dark-070": "hsla(0, 0%, 0%, 0.7)";
50
+ readonly "--d-fill-color-transparency-dark-080": "hsla(0, 0%, 0%, 0.8)";
51
+ readonly "--d-fill-color-transparency-dark-090": "hsla(0, 0%, 0%, 0.9)";
52
+ readonly "--d-fill-color-transparency-light-010": "hsla(0, 0%, 100%, 0.1)";
53
+ readonly "--d-fill-color-transparency-light-020": "hsla(0, 0%, 100%, 0.2)";
54
+ readonly "--d-fill-color-transparency-light-030": "hsla(0, 0%, 100%, 0.3)";
55
+ readonly "--d-fill-color-transparency-light-040": "hsla(0, 0%, 100%, 0.4)";
56
+ readonly "--d-fill-color-transparency-light-050": "hsla(0, 0%, 100%, 0.5)";
57
+ readonly "--d-fill-color-transparency-light-060": "hsla(0, 0%, 100%, 0.6)";
58
+ readonly "--d-fill-color-transparency-light-070": "hsla(0, 0%, 100%, 0.7)";
59
+ readonly "--d-fill-color-transparency-light-080": "hsla(0, 0%, 100%, 0.8)";
60
+ readonly "--d-fill-color-transparency-light-090": "hsla(0, 0%, 100%, 0.9)";
61
+ readonly "--d-icon-color-interaction": "hsl(174, 73%, 28%)";
62
+ readonly "--d-icon-color-status-error": "hsl(0, 72%, 45%)";
63
+ readonly "--d-icon-color-status-info": "hsl(206, 100%, 31%)";
64
+ readonly "--d-icon-color-status-neutral": "hsl(0, 0%, 32%)";
65
+ readonly "--d-icon-color-status-success": "hsl(124, 55%, 33%)";
66
+ readonly "--d-icon-color-status-warning": "hsl(36, 99%, 41%)";
67
+ readonly "--d-text-color": "hsl(0, 0%, 24%)";
68
+ readonly "--d-text-color-disabled": "hsl(0, 0%, 62%)";
69
+ readonly "--d-text-color-headline": "hsl(0, 0%, 12%)";
70
+ readonly "--d-text-color-interaction": "hsl(174, 73%, 28%)";
71
+ readonly "--d-text-color-inverted": "hsl(0, 0%, 100%)";
72
+ readonly "--d-text-color-placeholder": "hsl(0, 0%, 88%)";
73
+ readonly "--d-text-color-secondary": "hsl(0, 0%, 45%)";
74
+ readonly "--d-text-color-status-error": "hsl(0, 72%, 45%)";
75
+ readonly "--d-text-color-status-info": "hsl(206, 100%, 31%)";
76
+ readonly "--d-text-color-status-neutral": "hsl(0, 0%, 32%)";
77
+ readonly "--d-text-color-status-success": "hsl(124, 55%, 33%)";
78
+ readonly "--d-text-color-status-warning": "hsl(36, 99%, 32%)";
79
+ };
80
+ export type ReactNativeTokensLight = typeof reactNativeTokensLight;
81
+ //# sourceMappingURL=react-native-tokens-light.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-native-tokens-light.d.ts","sourceRoot":"","sources":["../../../src/build-output/ts/react-native-tokens-light.ts"],"names":[],"mappings":"AAAA;;GAEG;AAKH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuDS,CAAA;AAE5C,MAAM,MAAM,sBAAsB,GAAG,OAAO,sBAAsB,CAAA"}
@@ -0,0 +1,62 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ const reactNativeTokensLight = {
5
+ "--d-app-fill-color-gradient-header": { "stops": [{ "color": "#42a5f5", "position": 0 }, { "color": "#54b0aa", "position": 1 }], "type": "linear", "angle": 117.90481785563077 },
6
+ "--d-fill-color-button-interaction-solid-gradient-default": { "stops": [{ "color": "#42a5f5", "position": 0 }, { "color": "#68bb6a", "position": 1 }], "type": "linear", "angle": 117.90481785563077 },
7
+ "--d-fill-color-neutral-000": "hsl(0, 0%, 12%)",
8
+ "--d-fill-color-neutral-010": "hsl(0, 0%, 24%)",
9
+ "--d-fill-color-neutral-020": "hsl(0, 0%, 45%)",
10
+ "--d-fill-color-neutral-030": "hsl(0, 0%, 58%)",
11
+ "--d-fill-color-neutral-040": "hsl(0, 0%, 81%)",
12
+ "--d-fill-color-neutral-050": "hsl(0, 0%, 88%)",
13
+ "--d-fill-color-neutral-060": "hsl(0, 0%, 93%)",
14
+ "--d-fill-color-neutral-070": "hsl(0, 0%, 95%)",
15
+ "--d-fill-color-neutral-080": "hsl(0, 0%, 97%)",
16
+ "--d-fill-color-neutral-090": "hsl(0, 0%, 98%)",
17
+ "--d-fill-color-neutral-100": "hsl(0, 0%, 100%)",
18
+ "--d-fill-color-status-error-ghost": "hsl(0, 80%, 96%)",
19
+ "--d-fill-color-status-info-ghost": "hsl(210, 100%, 96%)",
20
+ "--d-fill-color-status-neutral-ghost": "hsl(0, 0%, 95%)",
21
+ "--d-fill-color-status-success-ghost": "hsl(120, 33%, 96%)",
22
+ "--d-fill-color-status-warning-ghost": "hsl(40, 90%, 96%)",
23
+ "--d-fill-color-transparency-dark-010": "hsla(0, 0%, 0%, 0.1)",
24
+ "--d-fill-color-transparency-dark-020": "hsla(0, 0%, 0%, 0.2)",
25
+ "--d-fill-color-transparency-dark-030": "hsla(0, 0%, 0%, 0.3)",
26
+ "--d-fill-color-transparency-dark-040": "hsla(0, 0%, 0%, 0.4)",
27
+ "--d-fill-color-transparency-dark-050": "hsla(0, 0%, 0%, 0.5)",
28
+ "--d-fill-color-transparency-dark-060": "hsla(0, 0%, 0%, 0.6)",
29
+ "--d-fill-color-transparency-dark-070": "hsla(0, 0%, 0%, 0.7)",
30
+ "--d-fill-color-transparency-dark-080": "hsla(0, 0%, 0%, 0.8)",
31
+ "--d-fill-color-transparency-dark-090": "hsla(0, 0%, 0%, 0.9)",
32
+ "--d-fill-color-transparency-light-010": "hsla(0, 0%, 100%, 0.1)",
33
+ "--d-fill-color-transparency-light-020": "hsla(0, 0%, 100%, 0.2)",
34
+ "--d-fill-color-transparency-light-030": "hsla(0, 0%, 100%, 0.3)",
35
+ "--d-fill-color-transparency-light-040": "hsla(0, 0%, 100%, 0.4)",
36
+ "--d-fill-color-transparency-light-050": "hsla(0, 0%, 100%, 0.5)",
37
+ "--d-fill-color-transparency-light-060": "hsla(0, 0%, 100%, 0.6)",
38
+ "--d-fill-color-transparency-light-070": "hsla(0, 0%, 100%, 0.7)",
39
+ "--d-fill-color-transparency-light-080": "hsla(0, 0%, 100%, 0.8)",
40
+ "--d-fill-color-transparency-light-090": "hsla(0, 0%, 100%, 0.9)",
41
+ "--d-icon-color-interaction": "hsl(174, 73%, 28%)",
42
+ "--d-icon-color-status-error": "hsl(0, 72%, 45%)",
43
+ "--d-icon-color-status-info": "hsl(206, 100%, 31%)",
44
+ "--d-icon-color-status-neutral": "hsl(0, 0%, 32%)",
45
+ "--d-icon-color-status-success": "hsl(124, 55%, 33%)",
46
+ "--d-icon-color-status-warning": "hsl(36, 99%, 41%)",
47
+ "--d-text-color": "hsl(0, 0%, 24%)",
48
+ "--d-text-color-disabled": "hsl(0, 0%, 62%)",
49
+ "--d-text-color-headline": "hsl(0, 0%, 12%)",
50
+ "--d-text-color-interaction": "hsl(174, 73%, 28%)",
51
+ "--d-text-color-inverted": "hsl(0, 0%, 100%)",
52
+ "--d-text-color-placeholder": "hsl(0, 0%, 88%)",
53
+ "--d-text-color-secondary": "hsl(0, 0%, 45%)",
54
+ "--d-text-color-status-error": "hsl(0, 72%, 45%)",
55
+ "--d-text-color-status-info": "hsl(206, 100%, 31%)",
56
+ "--d-text-color-status-neutral": "hsl(0, 0%, 32%)",
57
+ "--d-text-color-status-success": "hsl(124, 55%, 33%)",
58
+ "--d-text-color-status-warning": "hsl(36, 99%, 32%)"
59
+ };
60
+
61
+ export { reactNativeTokensLight };
62
+ //# sourceMappingURL=react-native-tokens-light.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-native-tokens-light.js","sources":["../../../src/build-output/ts/react-native-tokens-light.ts"],"sourcesContent":["/**\n * Do not edit directly, this file was auto-generated.\n */\n\n\nimport type { ReactNativeTokensSchema } from \"./types/react-native-types\"\n\nexport const reactNativeTokensLight = {\n \"--d-app-fill-color-gradient-header\": {\"stops\":[{\"color\":\"#42a5f5\",\"position\":0},{\"color\":\"#54b0aa\",\"position\":1}],\"type\":\"linear\",\"angle\":117.90481785563077},\n \"--d-fill-color-button-interaction-solid-gradient-default\": {\"stops\":[{\"color\":\"#42a5f5\",\"position\":0},{\"color\":\"#68bb6a\",\"position\":1}],\"type\":\"linear\",\"angle\":117.90481785563077},\n \"--d-fill-color-neutral-000\": \"hsl(0, 0%, 12%)\",\n \"--d-fill-color-neutral-010\": \"hsl(0, 0%, 24%)\",\n \"--d-fill-color-neutral-020\": \"hsl(0, 0%, 45%)\",\n \"--d-fill-color-neutral-030\": \"hsl(0, 0%, 58%)\",\n \"--d-fill-color-neutral-040\": \"hsl(0, 0%, 81%)\",\n \"--d-fill-color-neutral-050\": \"hsl(0, 0%, 88%)\",\n \"--d-fill-color-neutral-060\": \"hsl(0, 0%, 93%)\",\n \"--d-fill-color-neutral-070\": \"hsl(0, 0%, 95%)\",\n \"--d-fill-color-neutral-080\": \"hsl(0, 0%, 97%)\",\n \"--d-fill-color-neutral-090\": \"hsl(0, 0%, 98%)\",\n \"--d-fill-color-neutral-100\": \"hsl(0, 0%, 100%)\",\n \"--d-fill-color-status-error-ghost\": \"hsl(0, 80%, 96%)\",\n \"--d-fill-color-status-info-ghost\": \"hsl(210, 100%, 96%)\",\n \"--d-fill-color-status-neutral-ghost\": \"hsl(0, 0%, 95%)\",\n \"--d-fill-color-status-success-ghost\": \"hsl(120, 33%, 96%)\",\n \"--d-fill-color-status-warning-ghost\": \"hsl(40, 90%, 96%)\",\n \"--d-fill-color-transparency-dark-010\": \"hsla(0, 0%, 0%, 0.1)\",\n \"--d-fill-color-transparency-dark-020\": \"hsla(0, 0%, 0%, 0.2)\",\n \"--d-fill-color-transparency-dark-030\": \"hsla(0, 0%, 0%, 0.3)\",\n \"--d-fill-color-transparency-dark-040\": \"hsla(0, 0%, 0%, 0.4)\",\n \"--d-fill-color-transparency-dark-050\": \"hsla(0, 0%, 0%, 0.5)\",\n \"--d-fill-color-transparency-dark-060\": \"hsla(0, 0%, 0%, 0.6)\",\n \"--d-fill-color-transparency-dark-070\": \"hsla(0, 0%, 0%, 0.7)\",\n \"--d-fill-color-transparency-dark-080\": \"hsla(0, 0%, 0%, 0.8)\",\n \"--d-fill-color-transparency-dark-090\": \"hsla(0, 0%, 0%, 0.9)\",\n \"--d-fill-color-transparency-light-010\": \"hsla(0, 0%, 100%, 0.1)\",\n \"--d-fill-color-transparency-light-020\": \"hsla(0, 0%, 100%, 0.2)\",\n \"--d-fill-color-transparency-light-030\": \"hsla(0, 0%, 100%, 0.3)\",\n \"--d-fill-color-transparency-light-040\": \"hsla(0, 0%, 100%, 0.4)\",\n \"--d-fill-color-transparency-light-050\": \"hsla(0, 0%, 100%, 0.5)\",\n \"--d-fill-color-transparency-light-060\": \"hsla(0, 0%, 100%, 0.6)\",\n \"--d-fill-color-transparency-light-070\": \"hsla(0, 0%, 100%, 0.7)\",\n \"--d-fill-color-transparency-light-080\": \"hsla(0, 0%, 100%, 0.8)\",\n \"--d-fill-color-transparency-light-090\": \"hsla(0, 0%, 100%, 0.9)\",\n \"--d-icon-color-interaction\": \"hsl(174, 73%, 28%)\",\n \"--d-icon-color-status-error\": \"hsl(0, 72%, 45%)\",\n \"--d-icon-color-status-info\": \"hsl(206, 100%, 31%)\",\n \"--d-icon-color-status-neutral\": \"hsl(0, 0%, 32%)\",\n \"--d-icon-color-status-success\": \"hsl(124, 55%, 33%)\",\n \"--d-icon-color-status-warning\": \"hsl(36, 99%, 41%)\",\n \"--d-text-color\": \"hsl(0, 0%, 24%)\",\n \"--d-text-color-disabled\": \"hsl(0, 0%, 62%)\",\n \"--d-text-color-headline\": \"hsl(0, 0%, 12%)\",\n \"--d-text-color-interaction\": \"hsl(174, 73%, 28%)\",\n \"--d-text-color-inverted\": \"hsl(0, 0%, 100%)\",\n \"--d-text-color-placeholder\": \"hsl(0, 0%, 88%)\",\n \"--d-text-color-secondary\": \"hsl(0, 0%, 45%)\",\n \"--d-text-color-status-error\": \"hsl(0, 72%, 45%)\",\n \"--d-text-color-status-info\": \"hsl(206, 100%, 31%)\",\n \"--d-text-color-status-neutral\": \"hsl(0, 0%, 32%)\",\n \"--d-text-color-status-success\": \"hsl(124, 55%, 33%)\",\n \"--d-text-color-status-warning\": \"hsl(36, 99%, 32%)\"\n} as const satisfies ReactNativeTokensSchema\n\nexport type ReactNativeTokensLight = typeof reactNativeTokensLight\n"],"names":[],"mappings":"AAAA;;AAEG;AAKI,MAAM,sBAAsB,GAAG;AACpC,IAAA,oCAAoC,EAAE,EAAC,OAAO,EAAC,CAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,EAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,CAAC,EAAC,MAAM,EAAC,QAAQ,EAAC,OAAO,EAAC,kBAAkB,EAAC;AAC9J,IAAA,0DAA0D,EAAE,EAAC,OAAO,EAAC,CAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,EAAC,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC,EAAC,CAAC,EAAC,MAAM,EAAC,QAAQ,EAAC,OAAO,EAAC,kBAAkB,EAAC;AACpL,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,4BAA4B,EAAE,kBAAkB;AAChD,IAAA,mCAAmC,EAAE,kBAAkB;AACvD,IAAA,kCAAkC,EAAE,qBAAqB;AACzD,IAAA,qCAAqC,EAAE,iBAAiB;AACxD,IAAA,qCAAqC,EAAE,oBAAoB;AAC3D,IAAA,qCAAqC,EAAE,mBAAmB;AAC1D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,sCAAsC,EAAE,sBAAsB;AAC9D,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,uCAAuC,EAAE,wBAAwB;AACjE,IAAA,4BAA4B,EAAE,oBAAoB;AAClD,IAAA,6BAA6B,EAAE,kBAAkB;AACjD,IAAA,4BAA4B,EAAE,qBAAqB;AACnD,IAAA,+BAA+B,EAAE,iBAAiB;AAClD,IAAA,+BAA+B,EAAE,oBAAoB;AACrD,IAAA,+BAA+B,EAAE,mBAAmB;AACpD,IAAA,gBAAgB,EAAE,iBAAiB;AACnC,IAAA,yBAAyB,EAAE,iBAAiB;AAC5C,IAAA,yBAAyB,EAAE,iBAAiB;AAC5C,IAAA,4BAA4B,EAAE,oBAAoB;AAClD,IAAA,yBAAyB,EAAE,kBAAkB;AAC7C,IAAA,4BAA4B,EAAE,iBAAiB;AAC/C,IAAA,0BAA0B,EAAE,iBAAiB;AAC7C,IAAA,6BAA6B,EAAE,kBAAkB;AACjD,IAAA,4BAA4B,EAAE,qBAAqB;AACnD,IAAA,+BAA+B,EAAE,iBAAiB;AAClD,IAAA,+BAA+B,EAAE,oBAAoB;AACrD,IAAA,+BAA+B,EAAE;;;;;"}
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const themeableWebGradientTokens: {
5
+ readonly "--d-app-fill-color-gradient-header": {
6
+ readonly light: "linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(176, 37%, 51%))";
7
+ readonly dark: "linear-gradient(117.9deg, hsl(0, 0%, 12%), hsl(0, 0%, 12%))";
8
+ };
9
+ readonly "--d-fill-color-button-interaction-solid-gradient-default": {
10
+ readonly light: "linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(121, 38%, 57%))";
11
+ readonly dark: "linear-gradient(117.9deg, hsl(207, 90%, 51%), hsl(122, 48%, 57%))";
12
+ };
13
+ };
14
+ export type ThemeableWebGradientTokenUnion = keyof typeof themeableWebGradientTokens;
15
+ //# sourceMappingURL=themeable-web-gradient-tokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"themeable-web-gradient-tokens.d.ts","sourceRoot":"","sources":["../../../src/build-output/ts/themeable-web-gradient-tokens.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,0BAA0B;;;;;;;;;CAS7B,CAAA;AAEV,MAAM,MAAM,8BAA8B,GAAG,MAAM,OAAO,0BAA0B,CAAA"}
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ const themeableWebGradientTokens = {
5
+ "--d-app-fill-color-gradient-header": {
6
+ light: "linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(176, 37%, 51%))",
7
+ dark: "linear-gradient(117.9deg, hsl(0, 0%, 12%), hsl(0, 0%, 12%))",
8
+ },
9
+ "--d-fill-color-button-interaction-solid-gradient-default": {
10
+ light: "linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(121, 38%, 57%))",
11
+ dark: "linear-gradient(117.9deg, hsl(207, 90%, 51%), hsl(122, 48%, 57%))",
12
+ }
13
+ };
14
+
15
+ export { themeableWebGradientTokens };
16
+ //# sourceMappingURL=themeable-web-gradient-tokens.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"themeable-web-gradient-tokens.js","sources":["../../../src/build-output/ts/themeable-web-gradient-tokens.ts"],"sourcesContent":["/**\n * Do not edit directly, this file was auto-generated.\n */\n\n\nexport const themeableWebGradientTokens = {\n \"--d-app-fill-color-gradient-header\": {\n light: \"linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(176, 37%, 51%))\",\n dark: \"linear-gradient(117.9deg, hsl(0, 0%, 12%), hsl(0, 0%, 12%))\",\n },\n \"--d-fill-color-button-interaction-solid-gradient-default\": {\n light: \"linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(121, 38%, 57%))\",\n dark: \"linear-gradient(117.9deg, hsl(207, 90%, 51%), hsl(122, 48%, 57%))\",\n }\n} as const\n\nexport type ThemeableWebGradientTokenUnion = keyof typeof themeableWebGradientTokens\n"],"names":[],"mappings":"AAAA;;AAEG;AAGI,MAAM,0BAA0B,GAAG;AACxC,IAAA,oCAAoC,EAAE;AACpC,QAAA,KAAK,EAAE,mEAAmE;AAC1E,QAAA,IAAI,EAAE,6DAA6D;AACpE,KAAA;AACD,IAAA,0DAA0D,EAAE;AAC1D,QAAA,KAAK,EAAE,mEAAmE;AAC1E,QAAA,IAAI,EAAE,mEAAmE;AAC1E;;;;;"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const tokensByThemeSet: {
5
+ readonly brand: readonly ["--d-app-fill-color-gradient-header", "--d-fill-color-button-interaction-solid-gradient-default", "--d-icon-color-interaction", "--d-text-color-interaction"];
6
+ };
7
+ export type ThemeableTokenNamesUnion = (typeof tokensByThemeSet)[keyof typeof tokensByThemeSet][number];
8
+ //# sourceMappingURL=tokens-by-theme-set.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens-by-theme-set.d.ts","sourceRoot":"","sources":["../../../src/build-output/ts/tokens-by-theme-set.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,gBAAgB;;CAEnB,CAAA;AAEV,MAAM,MAAM,wBAAwB,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAA"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ const tokensByThemeSet = {
5
+ brand: ["--d-app-fill-color-gradient-header", "--d-fill-color-button-interaction-solid-gradient-default", "--d-icon-color-interaction", "--d-text-color-interaction"]
6
+ };
7
+
8
+ export { tokensByThemeSet };
9
+ //# sourceMappingURL=tokens-by-theme-set.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens-by-theme-set.js","sources":["../../../src/build-output/ts/tokens-by-theme-set.ts"],"sourcesContent":["/**\n * Do not edit directly, this file was auto-generated.\n */\n\n\nexport const tokensByThemeSet = {\n brand: [\"--d-app-fill-color-gradient-header\", \"--d-fill-color-button-interaction-solid-gradient-default\", \"--d-icon-color-interaction\", \"--d-text-color-interaction\"]\n} as const\n\nexport type ThemeableTokenNamesUnion = (typeof tokensByThemeSet)[keyof typeof tokensByThemeSet][number]\n"],"names":[],"mappings":"AAAA;;AAEG;AAGI,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,CAAC,oCAAoC,EAAE,0DAA0D,EAAE,4BAA4B,EAAE,4BAA4B;;;;;"}
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const tokens: {
5
+ "--d-app-fill-color-gradient-header": "linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(176, 37%, 51%))";
6
+ "--d-fill-color-button-interaction-solid-gradient-default": "linear-gradient(117.9deg, hsl(207, 90%, 61%), hsl(121, 38%, 57%))";
7
+ "--d-fill-color-neutral-000": "hsl(0, 0%, 12%)";
8
+ "--d-fill-color-neutral-010": "hsl(0, 0%, 24%)";
9
+ "--d-fill-color-neutral-020": "hsl(0, 0%, 45%)";
10
+ "--d-fill-color-neutral-030": "hsl(0, 0%, 58%)";
11
+ "--d-fill-color-neutral-040": "hsl(0, 0%, 81%)";
12
+ "--d-fill-color-neutral-050": "hsl(0, 0%, 88%)";
13
+ "--d-fill-color-neutral-060": "hsl(0, 0%, 93%)";
14
+ "--d-fill-color-neutral-070": "hsl(0, 0%, 95%)";
15
+ "--d-fill-color-neutral-080": "hsl(0, 0%, 97%)";
16
+ "--d-fill-color-neutral-090": "hsl(0, 0%, 98%)";
17
+ "--d-fill-color-neutral-100": "hsl(0, 0%, 100%)";
18
+ "--d-fill-color-status-error-ghost": "hsl(0, 80%, 96%)";
19
+ "--d-fill-color-status-info-ghost": "hsl(210, 100%, 96%)";
20
+ "--d-fill-color-status-neutral-ghost": "hsl(0, 0%, 95%)";
21
+ "--d-fill-color-status-success-ghost": "hsl(120, 33%, 96%)";
22
+ "--d-fill-color-status-warning-ghost": "hsl(40, 90%, 96%)";
23
+ "--d-fill-color-transparency-dark-010": "hsla(0, 0%, 0%, 0.1)";
24
+ "--d-fill-color-transparency-dark-020": "hsla(0, 0%, 0%, 0.2)";
25
+ "--d-fill-color-transparency-dark-030": "hsla(0, 0%, 0%, 0.3)";
26
+ "--d-fill-color-transparency-dark-040": "hsla(0, 0%, 0%, 0.4)";
27
+ "--d-fill-color-transparency-dark-050": "hsla(0, 0%, 0%, 0.5)";
28
+ "--d-fill-color-transparency-dark-060": "hsla(0, 0%, 0%, 0.6)";
29
+ "--d-fill-color-transparency-dark-070": "hsla(0, 0%, 0%, 0.7)";
30
+ "--d-fill-color-transparency-dark-080": "hsla(0, 0%, 0%, 0.8)";
31
+ "--d-fill-color-transparency-dark-090": "hsla(0, 0%, 0%, 0.9)";
32
+ "--d-fill-color-transparency-light-010": "hsla(0, 0%, 100%, 0.1)";
33
+ "--d-fill-color-transparency-light-020": "hsla(0, 0%, 100%, 0.2)";
34
+ "--d-fill-color-transparency-light-030": "hsla(0, 0%, 100%, 0.3)";
35
+ "--d-fill-color-transparency-light-040": "hsla(0, 0%, 100%, 0.4)";
36
+ "--d-fill-color-transparency-light-050": "hsla(0, 0%, 100%, 0.5)";
37
+ "--d-fill-color-transparency-light-060": "hsla(0, 0%, 100%, 0.6)";
38
+ "--d-fill-color-transparency-light-070": "hsla(0, 0%, 100%, 0.7)";
39
+ "--d-fill-color-transparency-light-080": "hsla(0, 0%, 100%, 0.8)";
40
+ "--d-fill-color-transparency-light-090": "hsla(0, 0%, 100%, 0.9)";
41
+ "--d-icon-color-interaction": "hsl(174, 73%, 28%)";
42
+ "--d-icon-color-status-error": "hsl(0, 72%, 45%)";
43
+ "--d-icon-color-status-info": "hsl(206, 100%, 31%)";
44
+ "--d-icon-color-status-neutral": "hsl(0, 0%, 32%)";
45
+ "--d-icon-color-status-success": "hsl(124, 55%, 33%)";
46
+ "--d-icon-color-status-warning": "hsl(36, 99%, 41%)";
47
+ "--d-text-color": "hsl(0, 0%, 24%)";
48
+ "--d-text-color-disabled": "hsl(0, 0%, 62%)";
49
+ "--d-text-color-headline": "hsl(0, 0%, 12%)";
50
+ "--d-text-color-interaction": "hsl(174, 73%, 28%)";
51
+ "--d-text-color-inverted": "hsl(0, 0%, 100%)";
52
+ "--d-text-color-placeholder": "hsl(0, 0%, 88%)";
53
+ "--d-text-color-secondary": "hsl(0, 0%, 45%)";
54
+ "--d-text-color-status-error": "hsl(0, 72%, 45%)";
55
+ "--d-text-color-status-info": "hsl(206, 100%, 31%)";
56
+ "--d-text-color-status-neutral": "hsl(0, 0%, 32%)";
57
+ "--d-text-color-status-success": "hsl(124, 55%, 33%)";
58
+ "--d-text-color-status-warning": "hsl(36, 99%, 32%)";
59
+ };
60
+ //# sourceMappingURL=tokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../src/build-output/ts/tokens.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuDlB,CAAA"}