@apify/ui-library 0.76.0 → 0.76.2-featcolortokens-178953.21

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 (76) hide show
  1. package/README.md +18 -5
  2. package/dist/src/design_system/colors/generated/colors_theme.dark.d.ts +110 -0
  3. package/dist/src/design_system/colors/generated/colors_theme.dark.d.ts.map +1 -0
  4. package/dist/src/design_system/colors/generated/colors_theme.dark.js +110 -0
  5. package/dist/src/design_system/colors/generated/colors_theme.dark.js.map +1 -0
  6. package/dist/src/design_system/colors/generated/colors_theme.light.d.ts +110 -0
  7. package/dist/src/design_system/colors/generated/colors_theme.light.d.ts.map +1 -0
  8. package/dist/src/design_system/colors/generated/colors_theme.light.js +110 -0
  9. package/dist/src/design_system/colors/generated/colors_theme.light.js.map +1 -0
  10. package/dist/src/design_system/colors/generated/css_variables.dark.d.ts +5 -0
  11. package/dist/src/design_system/colors/generated/css_variables.dark.d.ts.map +1 -0
  12. package/dist/src/design_system/colors/generated/css_variables.dark.js +147 -0
  13. package/dist/src/design_system/colors/generated/css_variables.dark.js.map +1 -0
  14. package/dist/src/design_system/colors/generated/css_variables.light.d.ts +5 -0
  15. package/dist/src/design_system/colors/generated/css_variables.light.d.ts.map +1 -0
  16. package/dist/src/design_system/colors/generated/css_variables.light.js +147 -0
  17. package/dist/src/design_system/colors/generated/css_variables.light.js.map +1 -0
  18. package/dist/src/design_system/colors/generated/css_variables_palette.dark.d.ts +5 -0
  19. package/dist/src/design_system/colors/generated/css_variables_palette.dark.d.ts.map +1 -0
  20. package/dist/src/design_system/colors/generated/css_variables_palette.dark.js +74 -0
  21. package/dist/src/design_system/colors/generated/css_variables_palette.dark.js.map +1 -0
  22. package/dist/src/design_system/colors/generated/css_variables_palette.light.d.ts +5 -0
  23. package/dist/src/design_system/colors/generated/css_variables_palette.light.d.ts.map +1 -0
  24. package/dist/src/design_system/colors/generated/css_variables_palette.light.js +74 -0
  25. package/dist/src/design_system/colors/generated/css_variables_palette.light.js.map +1 -0
  26. package/dist/src/design_system/{properties_theme.d.ts → colors/generated/properties_theme.d.ts} +18 -14
  27. package/dist/src/design_system/colors/generated/properties_theme.d.ts.map +1 -0
  28. package/dist/src/design_system/{properties_theme.js → colors/generated/properties_theme.js} +18 -154
  29. package/dist/src/design_system/colors/generated/properties_theme.js.map +1 -0
  30. package/dist/src/design_system/colors/index.d.ts +8 -0
  31. package/dist/src/design_system/colors/index.d.ts.map +1 -0
  32. package/dist/src/design_system/colors/index.js +8 -0
  33. package/dist/src/design_system/colors/index.js.map +1 -0
  34. package/dist/src/design_system/theme.d.ts +88 -87
  35. package/dist/src/design_system/theme.d.ts.map +1 -1
  36. package/dist/src/design_system/theme.js +1 -2
  37. package/dist/src/design_system/theme.js.map +1 -1
  38. package/dist/src/index.d.ts +1 -0
  39. package/dist/src/index.d.ts.map +1 -1
  40. package/dist/src/index.js +1 -0
  41. package/dist/src/index.js.map +1 -1
  42. package/dist/tsconfig.build.tsbuildinfo +1 -1
  43. package/package.json +11 -5
  44. package/src/design_system/colors/build_color_tokens.js +183 -0
  45. package/src/design_system/colors/figma_color_tokens.dark.json +886 -0
  46. package/src/design_system/colors/figma_color_tokens.light.json +886 -0
  47. package/src/design_system/colors/generated/colors_theme.dark.ts +110 -0
  48. package/src/design_system/{colors_theme.ts → colors/generated/colors_theme.light.ts} +40 -143
  49. package/src/design_system/colors/generated/css_variables.dark.ts +147 -0
  50. package/src/design_system/colors/generated/css_variables.light.ts +147 -0
  51. package/src/design_system/colors/generated/css_variables_palette.dark.ts +74 -0
  52. package/src/design_system/colors/generated/css_variables_palette.light.ts +74 -0
  53. package/src/design_system/{properties_theme.ts → colors/generated/properties_theme.ts} +19 -293
  54. package/src/design_system/colors/index.ts +7 -0
  55. package/src/design_system/theme.ts +1 -2
  56. package/src/index.ts +1 -0
  57. package/style/colors/dark.scss +148 -0
  58. package/style/colors/light.scss +148 -0
  59. package/style/colors/palette.dark.scss +75 -0
  60. package/style/colors/palette.light.scss +75 -0
  61. package/.stylelintrc +0 -12
  62. package/CHANGELOG.md +0 -3430
  63. package/CODEOWNERS +0 -7
  64. package/dist/src/design_system/colors_theme.d.ts +0 -213
  65. package/dist/src/design_system/colors_theme.d.ts.map +0 -1
  66. package/dist/src/design_system/colors_theme.js +0 -213
  67. package/dist/src/design_system/colors_theme.js.map +0 -1
  68. package/dist/src/design_system/properties_theme.d.ts.map +0 -1
  69. package/dist/src/design_system/properties_theme.js.map +0 -1
  70. package/eslint.config.mjs +0 -44
  71. package/src/codemods/generate_color_property_tokens.mjs +0 -98
  72. package/src/codemods/generate_color_theme_files.mjs +0 -47
  73. package/src/design_system/generate_color_definitions.js +0 -44
  74. package/src/design_system/supernova_color_tokens.json +0 -1766
  75. package/tsconfig.build.json +0 -17
  76. package/tsconfig.json +0 -10
package/README.md CHANGED
@@ -4,12 +4,25 @@
4
4
 
5
5
  ## Development
6
6
 
7
- 1. **This is a public package** - it shouldn't have any relation or dependency to Apify internal logic - we want to use it across our repositories and some of them might be public.
7
+ ### This is a public package
8
+ It shouldn't have any relation or dependency to Apify internal logic - we want to use it across our repositories and some of them might be public.
8
9
 
9
- 2. **Shared logic with web and docs** - If you’re changing any shared logic with the web that might affect the behavior, performance, or SEO, you need to always test it on both applications before it’s merged and published as a new version of the packages and after it’s done it’s your duty to make sure there are the latest versions within both repositories.
10
+ ### Shared logic with web and docs
11
+ If you’re changing any shared logic with the web that might affect the behavior, performance, or SEO, you need to always test it on both applications before it’s merged and published as a new version of the packages and after it’s done it’s your duty to make sure there are the latest versions within both repositories.
10
12
 
11
- 3. **Purpose and documentation** - there should be a clear purpose for each component and the component should be properly documented - both code and storybook.
13
+ ### Purpose and documentation
14
+ There should be a clear purpose for each component and the component should be properly documented - both code and storybook.
12
15
 
13
- 4. **Architecture design and dependencies** - No technology-specific logic. We don’t want to use anything technology or codebase-specific (such as Meteor, React router, Next …) as there might be different approaches for the technology where the component is used (examples as linking logic - in Next.js there is Next Link component, same of Next Image instead of using normal <img /> tag). This kind of behavior should not happen on the component level. Browser vs. server - some of the components might be used on the web with SSR (Server Side Renderings) and such a component can’t be using browser-specific features (such as accessing window.location)
16
+ ### Architecture design and dependencies
17
+ No technology-specific logic. We don’t want to use anything technology or codebase-specific (such as Meteor, React router, Next …) as there might be different approaches for the technology where the component is used (examples as linking logic - in Next.js there is Next Link component, same of Next Image instead of using normal <img /> tag). This kind of behavior should not happen on the component level. Browser vs. server - some of the components might be used on the web with SSR (Server Side Renderings) and such a component can’t be using browser-specific features (such as accessing window.location)
14
18
 
15
- 5. **Supernova tokens update** - New supernova tokens are available in `supernova_color_tokens.ts` and `supernova_typography_tokens.json`, specific code is generated with `npm run generate-theme` command
19
+ ### Supernova typography tokens update
20
+ New supernova typography tokens are available in `supernova_typography_tokens.json`, specific code is generated with `npm run generate-theme` command
21
+
22
+ ### Color tokens update
23
+ We use the [Design Tokens Manager](https://www.figma.com/community/plugin/1263743870981744253/design-tokens-manager) Figma plugin to export color tokens from our design files. This tool allows us to convert design-defined color styles into structured token JSON format that developers can easily consume.
24
+ The design team is responsible for exporting and maintaining the tokens. Once finalized, the exported file is shared with developers to integrate into the codebase, ensuring consistent color usage across platforms.
25
+
26
+ The exported tokens are stored in the `src/design_system/colors/figma_color_tokens.light.json` and `src/design_system/colors/figma_color_tokens.dark.json` files.
27
+
28
+ Source code based on these tokens is generated with `npm run build-color-tokens` command (it's also run automatically on `npm run build`).
@@ -0,0 +1,110 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const darkTheme: {
5
+ readonly roseLight: "#e88bb3";
6
+ readonly roseBase: "#b8487b";
7
+ readonly roseDark: "#6f234f";
8
+ readonly roseText: "#ed8bb5";
9
+ readonly buttercupLight: "#f9deaa";
10
+ readonly buttercupBase: "#e5b557";
11
+ readonly buttercupDark: "#b87939";
12
+ readonly buttercupText: "#ebbf6c";
13
+ readonly paprikaLight: "#e26c7d";
14
+ readonly paprikaBase: "#9e384b";
15
+ readonly paprikaDark: "#511d27";
16
+ readonly paprikaText: "#f67c8d";
17
+ readonly tealLight: "#aef0f5";
18
+ readonly tealBase: "#58bcc4";
19
+ readonly tealDark: "#408288";
20
+ readonly tealText: "#62c1c8";
21
+ readonly indigoLight: "#a8b7ed";
22
+ readonly indigoBase: "#6d85ca";
23
+ readonly indigoDark: "#425484";
24
+ readonly indigoText: "#a2b2eb";
25
+ readonly slateLight: "#c2c5dc";
26
+ readonly slateBase: "#8690bf";
27
+ readonly slateDark: "#535c81";
28
+ readonly slateText: "#afb2c9";
29
+ readonly coralLight: "#f3ccb0";
30
+ readonly coralBase: "#f08848";
31
+ readonly coralDark: "#9a4e2d";
32
+ readonly coralText: "#f9b27b";
33
+ readonly lavenderLight: "#b482ed";
34
+ readonly lavenderBase: "#8148c9";
35
+ readonly lavenderDark: "#48296f";
36
+ readonly lavenderText: "#be8af9";
37
+ readonly bambooLight: "#7acaa9";
38
+ readonly bambooBase: "#439274";
39
+ readonly bambooDark: "#305b4a";
40
+ readonly bambooText: "#65bc99";
41
+ readonly neutral0: "#ffffff";
42
+ readonly neutral25: "#f8f9fc";
43
+ readonly neutral50: "#f3f4fa";
44
+ readonly neutral75: "#eef0f8";
45
+ readonly neutral100: "#e1e3ed";
46
+ readonly neutral150: "#d1d5e4";
47
+ readonly neutral200: "#c1c6d9";
48
+ readonly neutral250: "#b2b8cc";
49
+ readonly neutral300: "#a5abc0";
50
+ readonly neutral350: "#989eb3";
51
+ readonly neutral400: "#8c93a8";
52
+ readonly neutral450: "#7d8499";
53
+ readonly neutral500: "#6e758a";
54
+ readonly neutral550: "#646a7f";
55
+ readonly neutral600: "#575d71";
56
+ readonly neutral650: "#4d5265";
57
+ readonly neutral700: "#414758";
58
+ readonly neutral750: "#343847";
59
+ readonly neutral775: "#2d313e";
60
+ readonly neutral800: "#2a2d39";
61
+ readonly neutral850: "#252832";
62
+ readonly neutral875: "#1e2027";
63
+ readonly neutral900: "#1a1b21";
64
+ readonly neutral950: "#101114";
65
+ readonly yellow25: "#fcdc73";
66
+ readonly yellow50: "#ffd761";
67
+ readonly yellow75: "#f9ce4b";
68
+ readonly yellow100: "#f5bc38";
69
+ readonly yellow200: "#cf9117";
70
+ readonly yellow300: "#a56909";
71
+ readonly yellow350: "#8a4f05";
72
+ readonly yellow400: "#6d3806";
73
+ readonly yellow500: "#5d2e0e";
74
+ readonly yellow600: "#3f1b07";
75
+ readonly yellow700: "#301806";
76
+ readonly red25: "#f5a790";
77
+ readonly red50: "#fe9e8a";
78
+ readonly red75: "#ff8770";
79
+ readonly red100: "#ff7157";
80
+ readonly red200: "#ef6045";
81
+ readonly red300: "#cf4436";
82
+ readonly red350: "#aa3229";
83
+ readonly red400: "#812420";
84
+ readonly red500: "#672523";
85
+ readonly red600: "#40191b";
86
+ readonly red700: "#381719";
87
+ readonly green25: "#74d584";
88
+ readonly green50: "#6ccd7c";
89
+ readonly green75: "#55c06a";
90
+ readonly green100: "#3bb358";
91
+ readonly green200: "#23a64a";
92
+ readonly green300: "#068a35";
93
+ readonly green350: "#006e29";
94
+ readonly green400: "#00531e";
95
+ readonly green500: "#14441f";
96
+ readonly green600: "#0f2b14";
97
+ readonly green700: "#09260f";
98
+ readonly blue25: "#92c0ff";
99
+ readonly blue50: "#8ebcff";
100
+ readonly blue75: "#80a9ff";
101
+ readonly blue100: "#6f9dff";
102
+ readonly blue200: "#5990ff";
103
+ readonly blue300: "#3970d7";
104
+ readonly blue350: "#295cbb";
105
+ readonly blue400: "#194594";
106
+ readonly blue500: "#1a3a78";
107
+ readonly blue600: "#0d2550";
108
+ readonly blue700: "#151d34";
109
+ };
110
+ //# sourceMappingURL=colors_theme.dark.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors_theme.dark.d.ts","sourceRoot":"","sources":["../../../../../src/design_system/colors/generated/colors_theme.dark.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyGZ,CAAC"}
@@ -0,0 +1,110 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export const darkTheme = {
5
+ roseLight: '#e88bb3',
6
+ roseBase: '#b8487b',
7
+ roseDark: '#6f234f',
8
+ roseText: '#ed8bb5',
9
+ buttercupLight: '#f9deaa',
10
+ buttercupBase: '#e5b557',
11
+ buttercupDark: '#b87939',
12
+ buttercupText: '#ebbf6c',
13
+ paprikaLight: '#e26c7d',
14
+ paprikaBase: '#9e384b',
15
+ paprikaDark: '#511d27',
16
+ paprikaText: '#f67c8d',
17
+ tealLight: '#aef0f5',
18
+ tealBase: '#58bcc4',
19
+ tealDark: '#408288',
20
+ tealText: '#62c1c8',
21
+ indigoLight: '#a8b7ed',
22
+ indigoBase: '#6d85ca',
23
+ indigoDark: '#425484',
24
+ indigoText: '#a2b2eb',
25
+ slateLight: '#c2c5dc',
26
+ slateBase: '#8690bf',
27
+ slateDark: '#535c81',
28
+ slateText: '#afb2c9',
29
+ coralLight: '#f3ccb0',
30
+ coralBase: '#f08848',
31
+ coralDark: '#9a4e2d',
32
+ coralText: '#f9b27b',
33
+ lavenderLight: '#b482ed',
34
+ lavenderBase: '#8148c9',
35
+ lavenderDark: '#48296f',
36
+ lavenderText: '#be8af9',
37
+ bambooLight: '#7acaa9',
38
+ bambooBase: '#439274',
39
+ bambooDark: '#305b4a',
40
+ bambooText: '#65bc99',
41
+ neutral0: '#ffffff',
42
+ neutral25: '#f8f9fc',
43
+ neutral50: '#f3f4fa',
44
+ neutral75: '#eef0f8',
45
+ neutral100: '#e1e3ed',
46
+ neutral150: '#d1d5e4',
47
+ neutral200: '#c1c6d9',
48
+ neutral250: '#b2b8cc',
49
+ neutral300: '#a5abc0',
50
+ neutral350: '#989eb3',
51
+ neutral400: '#8c93a8',
52
+ neutral450: '#7d8499',
53
+ neutral500: '#6e758a',
54
+ neutral550: '#646a7f',
55
+ neutral600: '#575d71',
56
+ neutral650: '#4d5265',
57
+ neutral700: '#414758',
58
+ neutral750: '#343847',
59
+ neutral775: '#2d313e',
60
+ neutral800: '#2a2d39',
61
+ neutral850: '#252832',
62
+ neutral875: '#1e2027',
63
+ neutral900: '#1a1b21',
64
+ neutral950: '#101114',
65
+ yellow25: '#fcdc73',
66
+ yellow50: '#ffd761',
67
+ yellow75: '#f9ce4b',
68
+ yellow100: '#f5bc38',
69
+ yellow200: '#cf9117',
70
+ yellow300: '#a56909',
71
+ yellow350: '#8a4f05',
72
+ yellow400: '#6d3806',
73
+ yellow500: '#5d2e0e',
74
+ yellow600: '#3f1b07',
75
+ yellow700: '#301806',
76
+ red25: '#f5a790',
77
+ red50: '#fe9e8a',
78
+ red75: '#ff8770',
79
+ red100: '#ff7157',
80
+ red200: '#ef6045',
81
+ red300: '#cf4436',
82
+ red350: '#aa3229',
83
+ red400: '#812420',
84
+ red500: '#672523',
85
+ red600: '#40191b',
86
+ red700: '#381719',
87
+ green25: '#74d584',
88
+ green50: '#6ccd7c',
89
+ green75: '#55c06a',
90
+ green100: '#3bb358',
91
+ green200: '#23a64a',
92
+ green300: '#068a35',
93
+ green350: '#006e29',
94
+ green400: '#00531e',
95
+ green500: '#14441f',
96
+ green600: '#0f2b14',
97
+ green700: '#09260f',
98
+ blue25: '#92c0ff',
99
+ blue50: '#8ebcff',
100
+ blue75: '#80a9ff',
101
+ blue100: '#6f9dff',
102
+ blue200: '#5990ff',
103
+ blue300: '#3970d7',
104
+ blue350: '#295cbb',
105
+ blue400: '#194594',
106
+ blue500: '#1a3a78',
107
+ blue600: '#0d2550',
108
+ blue700: '#151d34',
109
+ };
110
+ //# sourceMappingURL=colors_theme.dark.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors_theme.dark.js","sourceRoot":"","sources":["../../../../../src/design_system/colors/generated/colors_theme.dark.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,110 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const lightTheme: {
5
+ readonly roseLight: "#f483b5";
6
+ readonly roseBase: "#c6387d";
7
+ readonly roseDark: "#781552";
8
+ readonly roseText: "#b6006b";
9
+ readonly buttercupLight: "#ffdd96";
10
+ readonly buttercupBase: "#f0b21b";
11
+ readonly buttercupDark: "#c37319";
12
+ readonly buttercupText: "#a65d00";
13
+ readonly paprikaLight: "#e44467";
14
+ readonly paprikaBase: "#9b0238";
15
+ readonly paprikaDark: "#4a0018";
16
+ readonly paprikaText: "#ba0044";
17
+ readonly tealLight: "#a7f2ed";
18
+ readonly tealBase: "#30c0bb";
19
+ readonly tealDark: "#297774";
20
+ readonly tealText: "#018181";
21
+ readonly indigoLight: "#a1b7ff";
22
+ readonly indigoBase: "#5d85e1";
23
+ readonly indigoDark: "#365494";
24
+ readonly indigoText: "#2563c1";
25
+ readonly slateLight: "#c1c5e1";
26
+ readonly slateBase: "#8490c4";
27
+ readonly slateDark: "#525c85";
28
+ readonly slateText: "#566087";
29
+ readonly coralLight: "#ffc89f";
30
+ readonly coralBase: "#fa8136";
31
+ readonly coralDark: "#bb4511";
32
+ readonly coralText: "#c74000";
33
+ readonly lavenderLight: "#bf97ed";
34
+ readonly lavenderBase: "#6a14de";
35
+ readonly lavenderDark: "#330276";
36
+ readonly lavenderText: "#6e00f4";
37
+ readonly bambooLight: "#64cda5";
38
+ readonly bambooBase: "#12966f";
39
+ readonly bambooDark: "#195d46";
40
+ readonly bambooText: "#007455";
41
+ readonly neutral0: "#ffffff";
42
+ readonly neutral25: "#f8f9fc";
43
+ readonly neutral50: "#f3f4fa";
44
+ readonly neutral75: "#eef0f8";
45
+ readonly neutral100: "#e0e3f2";
46
+ readonly neutral150: "#d0d5e9";
47
+ readonly neutral200: "#c0c6de";
48
+ readonly neutral250: "#b0b8d1";
49
+ readonly neutral300: "#a3abc5";
50
+ readonly neutral350: "#969eb8";
51
+ readonly neutral400: "#8a93ae";
52
+ readonly neutral450: "#7b84a0";
53
+ readonly neutral500: "#6c7590";
54
+ readonly neutral550: "#626a85";
55
+ readonly neutral600: "#555d76";
56
+ readonly neutral650: "#4b526b";
57
+ readonly neutral700: "#3f475d";
58
+ readonly neutral750: "#31384d";
59
+ readonly neutral775: "#2b3143";
60
+ readonly neutral800: "#272d3e";
61
+ readonly neutral850: "#242836";
62
+ readonly neutral875: "#1d202a";
63
+ readonly neutral900: "#191b22";
64
+ readonly neutral950: "#0a0b0f";
65
+ readonly yellow25: "#f9f6ea";
66
+ readonly yellow50: "#f9f0db";
67
+ readonly yellow75: "#f7e8c4";
68
+ readonly yellow100: "#f7dfb1";
69
+ readonly yellow200: "#f5b315";
70
+ readonly yellow300: "#e39c04";
71
+ readonly yellow350: "#d58e00";
72
+ readonly yellow400: "#ca8200";
73
+ readonly yellow500: "#a96600";
74
+ readonly yellow600: "#8c4e02";
75
+ readonly yellow700: "#864906";
76
+ readonly red25: "#fcf2ef";
77
+ readonly red50: "#fff0ec";
78
+ readonly red75: "#ffe3dc";
79
+ readonly red100: "#fedad1";
80
+ readonly red200: "#ffb39f";
81
+ readonly red300: "#ff886e";
82
+ readonly red350: "#fc7156";
83
+ readonly red400: "#fa4d37";
84
+ readonly red500: "#e3231d";
85
+ readonly red600: "#bb0401";
86
+ readonly red700: "#af0600";
87
+ readonly green25: "#e8f9ef";
88
+ readonly green50: "#e4f5e5";
89
+ readonly green75: "#daefdc";
90
+ readonly green100: "#cfe9d1";
91
+ readonly green200: "#80da8d";
92
+ readonly green300: "#46c263";
93
+ readonly green350: "#22b551";
94
+ readonly green400: "#00ab46";
95
+ readonly green500: "#008a27";
96
+ readonly green600: "#086e08";
97
+ readonly green700: "#176b08";
98
+ readonly blue25: "#f0f8ff";
99
+ readonly blue50: "#ecf1ff";
100
+ readonly blue75: "#e1eaff";
101
+ readonly blue100: "#d8e2ff";
102
+ readonly blue200: "#b2c6ff";
103
+ readonly blue300: "#88abfe";
104
+ readonly blue350: "#709efd";
105
+ readonly blue400: "#5290f9";
106
+ readonly blue500: "#1672eb";
107
+ readonly blue600: "#1a57da";
108
+ readonly blue700: "#224ed5";
109
+ };
110
+ //# sourceMappingURL=colors_theme.light.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors_theme.light.d.ts","sourceRoot":"","sources":["../../../../../src/design_system/colors/generated/colors_theme.light.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyGb,CAAC"}
@@ -0,0 +1,110 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export const lightTheme = {
5
+ roseLight: '#f483b5',
6
+ roseBase: '#c6387d',
7
+ roseDark: '#781552',
8
+ roseText: '#b6006b',
9
+ buttercupLight: '#ffdd96',
10
+ buttercupBase: '#f0b21b',
11
+ buttercupDark: '#c37319',
12
+ buttercupText: '#a65d00',
13
+ paprikaLight: '#e44467',
14
+ paprikaBase: '#9b0238',
15
+ paprikaDark: '#4a0018',
16
+ paprikaText: '#ba0044',
17
+ tealLight: '#a7f2ed',
18
+ tealBase: '#30c0bb',
19
+ tealDark: '#297774',
20
+ tealText: '#018181',
21
+ indigoLight: '#a1b7ff',
22
+ indigoBase: '#5d85e1',
23
+ indigoDark: '#365494',
24
+ indigoText: '#2563c1',
25
+ slateLight: '#c1c5e1',
26
+ slateBase: '#8490c4',
27
+ slateDark: '#525c85',
28
+ slateText: '#566087',
29
+ coralLight: '#ffc89f',
30
+ coralBase: '#fa8136',
31
+ coralDark: '#bb4511',
32
+ coralText: '#c74000',
33
+ lavenderLight: '#bf97ed',
34
+ lavenderBase: '#6a14de',
35
+ lavenderDark: '#330276',
36
+ lavenderText: '#6e00f4',
37
+ bambooLight: '#64cda5',
38
+ bambooBase: '#12966f',
39
+ bambooDark: '#195d46',
40
+ bambooText: '#007455',
41
+ neutral0: '#ffffff',
42
+ neutral25: '#f8f9fc',
43
+ neutral50: '#f3f4fa',
44
+ neutral75: '#eef0f8',
45
+ neutral100: '#e0e3f2',
46
+ neutral150: '#d0d5e9',
47
+ neutral200: '#c0c6de',
48
+ neutral250: '#b0b8d1',
49
+ neutral300: '#a3abc5',
50
+ neutral350: '#969eb8',
51
+ neutral400: '#8a93ae',
52
+ neutral450: '#7b84a0',
53
+ neutral500: '#6c7590',
54
+ neutral550: '#626a85',
55
+ neutral600: '#555d76',
56
+ neutral650: '#4b526b',
57
+ neutral700: '#3f475d',
58
+ neutral750: '#31384d',
59
+ neutral775: '#2b3143',
60
+ neutral800: '#272d3e',
61
+ neutral850: '#242836',
62
+ neutral875: '#1d202a',
63
+ neutral900: '#191b22',
64
+ neutral950: '#0a0b0f',
65
+ yellow25: '#f9f6ea',
66
+ yellow50: '#f9f0db',
67
+ yellow75: '#f7e8c4',
68
+ yellow100: '#f7dfb1',
69
+ yellow200: '#f5b315',
70
+ yellow300: '#e39c04',
71
+ yellow350: '#d58e00',
72
+ yellow400: '#ca8200',
73
+ yellow500: '#a96600',
74
+ yellow600: '#8c4e02',
75
+ yellow700: '#864906',
76
+ red25: '#fcf2ef',
77
+ red50: '#fff0ec',
78
+ red75: '#ffe3dc',
79
+ red100: '#fedad1',
80
+ red200: '#ffb39f',
81
+ red300: '#ff886e',
82
+ red350: '#fc7156',
83
+ red400: '#fa4d37',
84
+ red500: '#e3231d',
85
+ red600: '#bb0401',
86
+ red700: '#af0600',
87
+ green25: '#e8f9ef',
88
+ green50: '#e4f5e5',
89
+ green75: '#daefdc',
90
+ green100: '#cfe9d1',
91
+ green200: '#80da8d',
92
+ green300: '#46c263',
93
+ green350: '#22b551',
94
+ green400: '#00ab46',
95
+ green500: '#008a27',
96
+ green600: '#086e08',
97
+ green700: '#176b08',
98
+ blue25: '#f0f8ff',
99
+ blue50: '#ecf1ff',
100
+ blue75: '#e1eaff',
101
+ blue100: '#d8e2ff',
102
+ blue200: '#b2c6ff',
103
+ blue300: '#88abfe',
104
+ blue350: '#709efd',
105
+ blue400: '#5290f9',
106
+ blue500: '#1672eb',
107
+ blue600: '#1a57da',
108
+ blue700: '#224ed5',
109
+ };
110
+ //# sourceMappingURL=colors_theme.light.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors_theme.light.js","sourceRoot":"","sources":["../../../../../src/design_system/colors/generated/colors_theme.light.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const tokens = "\n --color-neutral-text: #f3f4fa;\n --color-neutral-text-muted: #b2b8cc;\n --color-neutral-text-subtle: #8c93a8;\n --color-neutral-text-disabled: #575d71;\n --color-neutral-text-on-primary: #1a1b21;\n --color-neutral-icon-on-primary: #1a1b21;\n --color-neutral-background: #1a1b21;\n --color-neutral-background-muted: #252832;\n --color-neutral-background-subtle: #2a2d39;\n --color-neutral-background-white: #f3f4fa;\n --color-neutral-card-background: #1e2027;\n --color-neutral-card-background-hover: #252832;\n --color-neutral-border: #414758;\n --color-neutral-separator-subtle: #343847;\n --color-neutral-hover: #2d313e;\n --color-neutral-disabled: #343847;\n --color-neutral-overflow: #2a2d39;\n --color-neutral-icon: #b2b8cc;\n --color-neutral-icon-subtle: #6e758a;\n --color-neutral-icon-disabled: #575d71;\n --color-neutral-field-border: #343847;\n --color-neutral-action-secondary: #575d71;\n --color-neutral-action-secondary-hover: #6e758a;\n --color-neutral-action-secondary-active: #343847;\n --color-neutral-chip-background: #575d71;\n --color-neutral-chip-background-hover: #6e758a;\n --color-neutral-chip-background-active: #8c93a8;\n --color-neutral-chip-background-disabled: #8c93a8;\n --color-neutral-large-tooltip-background: #2a2d39;\n --color-neutral-large-tooltip-border: #343847;\n --color-neutral-small-tooltip-text: #ffffff;\n --color-neutral-small-tooltip-background: #2a2d39;\n --color-neutral-small-tooltip-border: #343847;\n --color-neutral-overlay: #101114;\n --color-neutral-field-background: #101114;\n --color-neutral-text-placeholder: #6e758a;\n --color-primary-text: #6f9dff;\n --color-primary-text-interactive: #6f9dff;\n --color-primary-icon: #3970d7;\n --color-primary-action: #5990ff;\n --color-primary-action-hover: #80a9ff;\n --color-primary-action-active: #3970d7;\n --color-primary-field-border-active: #3970d7;\n --color-primary-border-subtle: #295cbb;\n --color-primary-background: #0d2550;\n --color-primary-background-subtle: #151d34;\n --color-primary-background-hover: #194594;\n --color-primary-chip-background: #0d2550;\n --color-primary-chip-background-subtle: #151d34;\n --color-primary-chip-background-hover: #194594;\n --color-primary-chip-text: #8ebcff;\n --color-primary-shadow-active: #295cbb;\n --color-primary-black-action: #ffffff;\n --color-primary-black-action-hover: #d1d5e4;\n --color-primary-black-action-active: #f3f4fa;\n --color-primary-black-background: #f3f4fa;\n --color-primary-black-background-hover: #eef0f8;\n --color-primary-black-chip-text: #101114;\n --color-success-text: #3bb358;\n --color-success-icon: #23a64a;\n --color-success-background: #14441f;\n --color-success-background-hover: #00531e;\n --color-success-background-subtle: #09260f;\n --color-success-background-subtle-hover: #14441f;\n --color-success-background-subtle-active: #006e29;\n --color-success-chip-background: #14441f;\n --color-success-chip-background-hover: #00531e;\n --color-success-chip-text: #6ccd7c;\n --color-success-border: #068a35;\n --color-success-border-subtle: #006e29;\n --color-success-action: #23a64a;\n --color-success-action-hover: #3bb358;\n --color-success-action-active: #068a35;\n --color-warning-text: #f9ce4b;\n --color-warning-icon: #f9ce4b;\n --color-warning-background: #5d2e0e;\n --color-warning-background-hover: #6d3806;\n --color-warning-background-subtle: #301806;\n --color-warning-chip-background: #5d2e0e;\n --color-warning-chip-background-hover: #6d3806;\n --color-warning-chip-text: #ffd761;\n --color-warning-border: #a56909;\n --color-warning-border-subtle: #8a4f05;\n --color-warning-field-border: #cf9117;\n --color-danger-text: #ff7157;\n --color-danger-icon: #ef6045;\n --color-danger-background: #672523;\n --color-danger-background-hover: #812420;\n --color-danger-background-subtle: #381719;\n --color-danger-background-subtle-hover: #672523;\n --color-danger-background-subtle-active: #aa3229;\n --color-danger-chip-background: #672523;\n --color-danger-chip-background-hover: #812420;\n --color-danger-chip-text: #fe9e8a;\n --color-danger-border: #cf4436;\n --color-danger-border-subtle: #aa3229;\n --color-danger-field-border: #ef6045;\n --color-danger-action: #ef6045;\n --color-danger-action-hover: #ff7157;\n --color-danger-action-active: #cf4436;\n --color-special-free-plan-background: #9a4e2d;\n --color-special-starter-plan-background: #b87939;\n --color-special-scale-plan-background: #425484;\n --color-special-business-plan-background: #408288;\n --color-special-enterprise-plan-background: #48296f;\n --color-rose-light: #e88bb3;\n --color-rose-base: #b8487b;\n --color-rose-dark: #6f234f;\n --color-rose-text: #ed8bb5;\n --color-buttercup-light: #f9deaa;\n --color-buttercup-base: #e5b557;\n --color-buttercup-dark: #b87939;\n --color-buttercup-text: #ebbf6c;\n --color-paprika-light: #e26c7d;\n --color-paprika-base: #9e384b;\n --color-paprika-dark: #511d27;\n --color-paprika-text: #f67c8d;\n --color-teal-light: #aef0f5;\n --color-teal-base: #58bcc4;\n --color-teal-dark: #408288;\n --color-teal-text: #62c1c8;\n --color-indigo-light: #a8b7ed;\n --color-indigo-base: #6d85ca;\n --color-indigo-dark: #425484;\n --color-indigo-text: #a2b2eb;\n --color-slate-light: #c2c5dc;\n --color-slate-base: #8690bf;\n --color-slate-dark: #535c81;\n --color-slate-text: #afb2c9;\n --color-coral-light: #f3ccb0;\n --color-coral-base: #f08848;\n --color-coral-dark: #9a4e2d;\n --color-coral-text: #f9b27b;\n --color-lavender-light: #b482ed;\n --color-lavender-base: #8148c9;\n --color-lavender-dark: #48296f;\n --color-lavender-text: #be8af9;\n --color-bamboo-light: #7acaa9;\n --color-bamboo-base: #439274;\n --color-bamboo-dark: #305b4a;\n --color-bamboo-text: #65bc99;\n";
5
+ //# sourceMappingURL=css_variables.dark.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"css_variables.dark.d.ts","sourceRoot":"","sources":["../../../../../src/design_system/colors/generated/css_variables.dark.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,MAAM,+rLA8IlB,CAAC"}
@@ -0,0 +1,147 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export const tokens = `
5
+ --color-neutral-text: #f3f4fa;
6
+ --color-neutral-text-muted: #b2b8cc;
7
+ --color-neutral-text-subtle: #8c93a8;
8
+ --color-neutral-text-disabled: #575d71;
9
+ --color-neutral-text-on-primary: #1a1b21;
10
+ --color-neutral-icon-on-primary: #1a1b21;
11
+ --color-neutral-background: #1a1b21;
12
+ --color-neutral-background-muted: #252832;
13
+ --color-neutral-background-subtle: #2a2d39;
14
+ --color-neutral-background-white: #f3f4fa;
15
+ --color-neutral-card-background: #1e2027;
16
+ --color-neutral-card-background-hover: #252832;
17
+ --color-neutral-border: #414758;
18
+ --color-neutral-separator-subtle: #343847;
19
+ --color-neutral-hover: #2d313e;
20
+ --color-neutral-disabled: #343847;
21
+ --color-neutral-overflow: #2a2d39;
22
+ --color-neutral-icon: #b2b8cc;
23
+ --color-neutral-icon-subtle: #6e758a;
24
+ --color-neutral-icon-disabled: #575d71;
25
+ --color-neutral-field-border: #343847;
26
+ --color-neutral-action-secondary: #575d71;
27
+ --color-neutral-action-secondary-hover: #6e758a;
28
+ --color-neutral-action-secondary-active: #343847;
29
+ --color-neutral-chip-background: #575d71;
30
+ --color-neutral-chip-background-hover: #6e758a;
31
+ --color-neutral-chip-background-active: #8c93a8;
32
+ --color-neutral-chip-background-disabled: #8c93a8;
33
+ --color-neutral-large-tooltip-background: #2a2d39;
34
+ --color-neutral-large-tooltip-border: #343847;
35
+ --color-neutral-small-tooltip-text: #ffffff;
36
+ --color-neutral-small-tooltip-background: #2a2d39;
37
+ --color-neutral-small-tooltip-border: #343847;
38
+ --color-neutral-overlay: #101114;
39
+ --color-neutral-field-background: #101114;
40
+ --color-neutral-text-placeholder: #6e758a;
41
+ --color-primary-text: #6f9dff;
42
+ --color-primary-text-interactive: #6f9dff;
43
+ --color-primary-icon: #3970d7;
44
+ --color-primary-action: #5990ff;
45
+ --color-primary-action-hover: #80a9ff;
46
+ --color-primary-action-active: #3970d7;
47
+ --color-primary-field-border-active: #3970d7;
48
+ --color-primary-border-subtle: #295cbb;
49
+ --color-primary-background: #0d2550;
50
+ --color-primary-background-subtle: #151d34;
51
+ --color-primary-background-hover: #194594;
52
+ --color-primary-chip-background: #0d2550;
53
+ --color-primary-chip-background-subtle: #151d34;
54
+ --color-primary-chip-background-hover: #194594;
55
+ --color-primary-chip-text: #8ebcff;
56
+ --color-primary-shadow-active: #295cbb;
57
+ --color-primary-black-action: #ffffff;
58
+ --color-primary-black-action-hover: #d1d5e4;
59
+ --color-primary-black-action-active: #f3f4fa;
60
+ --color-primary-black-background: #f3f4fa;
61
+ --color-primary-black-background-hover: #eef0f8;
62
+ --color-primary-black-chip-text: #101114;
63
+ --color-success-text: #3bb358;
64
+ --color-success-icon: #23a64a;
65
+ --color-success-background: #14441f;
66
+ --color-success-background-hover: #00531e;
67
+ --color-success-background-subtle: #09260f;
68
+ --color-success-background-subtle-hover: #14441f;
69
+ --color-success-background-subtle-active: #006e29;
70
+ --color-success-chip-background: #14441f;
71
+ --color-success-chip-background-hover: #00531e;
72
+ --color-success-chip-text: #6ccd7c;
73
+ --color-success-border: #068a35;
74
+ --color-success-border-subtle: #006e29;
75
+ --color-success-action: #23a64a;
76
+ --color-success-action-hover: #3bb358;
77
+ --color-success-action-active: #068a35;
78
+ --color-warning-text: #f9ce4b;
79
+ --color-warning-icon: #f9ce4b;
80
+ --color-warning-background: #5d2e0e;
81
+ --color-warning-background-hover: #6d3806;
82
+ --color-warning-background-subtle: #301806;
83
+ --color-warning-chip-background: #5d2e0e;
84
+ --color-warning-chip-background-hover: #6d3806;
85
+ --color-warning-chip-text: #ffd761;
86
+ --color-warning-border: #a56909;
87
+ --color-warning-border-subtle: #8a4f05;
88
+ --color-warning-field-border: #cf9117;
89
+ --color-danger-text: #ff7157;
90
+ --color-danger-icon: #ef6045;
91
+ --color-danger-background: #672523;
92
+ --color-danger-background-hover: #812420;
93
+ --color-danger-background-subtle: #381719;
94
+ --color-danger-background-subtle-hover: #672523;
95
+ --color-danger-background-subtle-active: #aa3229;
96
+ --color-danger-chip-background: #672523;
97
+ --color-danger-chip-background-hover: #812420;
98
+ --color-danger-chip-text: #fe9e8a;
99
+ --color-danger-border: #cf4436;
100
+ --color-danger-border-subtle: #aa3229;
101
+ --color-danger-field-border: #ef6045;
102
+ --color-danger-action: #ef6045;
103
+ --color-danger-action-hover: #ff7157;
104
+ --color-danger-action-active: #cf4436;
105
+ --color-special-free-plan-background: #9a4e2d;
106
+ --color-special-starter-plan-background: #b87939;
107
+ --color-special-scale-plan-background: #425484;
108
+ --color-special-business-plan-background: #408288;
109
+ --color-special-enterprise-plan-background: #48296f;
110
+ --color-rose-light: #e88bb3;
111
+ --color-rose-base: #b8487b;
112
+ --color-rose-dark: #6f234f;
113
+ --color-rose-text: #ed8bb5;
114
+ --color-buttercup-light: #f9deaa;
115
+ --color-buttercup-base: #e5b557;
116
+ --color-buttercup-dark: #b87939;
117
+ --color-buttercup-text: #ebbf6c;
118
+ --color-paprika-light: #e26c7d;
119
+ --color-paprika-base: #9e384b;
120
+ --color-paprika-dark: #511d27;
121
+ --color-paprika-text: #f67c8d;
122
+ --color-teal-light: #aef0f5;
123
+ --color-teal-base: #58bcc4;
124
+ --color-teal-dark: #408288;
125
+ --color-teal-text: #62c1c8;
126
+ --color-indigo-light: #a8b7ed;
127
+ --color-indigo-base: #6d85ca;
128
+ --color-indigo-dark: #425484;
129
+ --color-indigo-text: #a2b2eb;
130
+ --color-slate-light: #c2c5dc;
131
+ --color-slate-base: #8690bf;
132
+ --color-slate-dark: #535c81;
133
+ --color-slate-text: #afb2c9;
134
+ --color-coral-light: #f3ccb0;
135
+ --color-coral-base: #f08848;
136
+ --color-coral-dark: #9a4e2d;
137
+ --color-coral-text: #f9b27b;
138
+ --color-lavender-light: #b482ed;
139
+ --color-lavender-base: #8148c9;
140
+ --color-lavender-dark: #48296f;
141
+ --color-lavender-text: #be8af9;
142
+ --color-bamboo-light: #7acaa9;
143
+ --color-bamboo-base: #439274;
144
+ --color-bamboo-dark: #305b4a;
145
+ --color-bamboo-text: #65bc99;
146
+ `;
147
+ //# sourceMappingURL=css_variables.dark.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"css_variables.dark.js","sourceRoot":"","sources":["../../../../../src/design_system/colors/generated/css_variables.dark.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,CAAC,MAAM,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8IrB,CAAC"}