@likec4/styles 1.27.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 (137) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +46 -0
  3. package/build.config.ts +27 -0
  4. package/dev.ts +36 -0
  5. package/dist/css/conditions.mjs +36 -0
  6. package/dist/css/css.d.ts +22 -0
  7. package/dist/css/css.mjs +45 -0
  8. package/dist/css/cva.d.ts +6 -0
  9. package/dist/css/cva.mjs +87 -0
  10. package/dist/css/cx.d.ts +5 -0
  11. package/dist/css/cx.mjs +15 -0
  12. package/dist/css/index.d.ts +5 -0
  13. package/dist/css/index.mjs +4 -0
  14. package/dist/css/sva.d.ts +4 -0
  15. package/dist/css/sva.mjs +41 -0
  16. package/dist/helpers.mjs +336 -0
  17. package/dist/jsx/aspect-ratio.d.ts +10 -0
  18. package/dist/jsx/aspect-ratio.mjs +14 -0
  19. package/dist/jsx/bleed.d.ts +10 -0
  20. package/dist/jsx/bleed.mjs +14 -0
  21. package/dist/jsx/box.d.ts +10 -0
  22. package/dist/jsx/box.mjs +14 -0
  23. package/dist/jsx/center.d.ts +10 -0
  24. package/dist/jsx/center.mjs +14 -0
  25. package/dist/jsx/circle.d.ts +10 -0
  26. package/dist/jsx/circle.mjs +14 -0
  27. package/dist/jsx/container.d.ts +10 -0
  28. package/dist/jsx/container.mjs +14 -0
  29. package/dist/jsx/cq.d.ts +10 -0
  30. package/dist/jsx/cq.mjs +14 -0
  31. package/dist/jsx/divider.d.ts +10 -0
  32. package/dist/jsx/divider.mjs +14 -0
  33. package/dist/jsx/factory-helper.mjs +22 -0
  34. package/dist/jsx/factory.d.ts +3 -0
  35. package/dist/jsx/factory.mjs +80 -0
  36. package/dist/jsx/flex.d.ts +10 -0
  37. package/dist/jsx/flex.mjs +14 -0
  38. package/dist/jsx/float.d.ts +10 -0
  39. package/dist/jsx/float.mjs +14 -0
  40. package/dist/jsx/grid-item.d.ts +10 -0
  41. package/dist/jsx/grid-item.mjs +14 -0
  42. package/dist/jsx/grid.d.ts +10 -0
  43. package/dist/jsx/grid.mjs +14 -0
  44. package/dist/jsx/hstack.d.ts +10 -0
  45. package/dist/jsx/hstack.mjs +14 -0
  46. package/dist/jsx/index.d.ts +24 -0
  47. package/dist/jsx/index.mjs +22 -0
  48. package/dist/jsx/is-valid-prop.d.ts +11 -0
  49. package/dist/jsx/is-valid-prop.mjs +17 -0
  50. package/dist/jsx/link-overlay.d.ts +10 -0
  51. package/dist/jsx/link-overlay.mjs +14 -0
  52. package/dist/jsx/spacer.d.ts +10 -0
  53. package/dist/jsx/spacer.mjs +14 -0
  54. package/dist/jsx/square.d.ts +10 -0
  55. package/dist/jsx/square.mjs +14 -0
  56. package/dist/jsx/stack.d.ts +10 -0
  57. package/dist/jsx/stack.mjs +14 -0
  58. package/dist/jsx/visually-hidden.d.ts +10 -0
  59. package/dist/jsx/visually-hidden.mjs +14 -0
  60. package/dist/jsx/vstack.d.ts +10 -0
  61. package/dist/jsx/vstack.mjs +14 -0
  62. package/dist/jsx/wrap.d.ts +10 -0
  63. package/dist/jsx/wrap.mjs +14 -0
  64. package/dist/patterns/aspect-ratio.d.ts +21 -0
  65. package/dist/patterns/aspect-ratio.mjs +38 -0
  66. package/dist/patterns/bleed.d.ts +22 -0
  67. package/dist/patterns/bleed.mjs +24 -0
  68. package/dist/patterns/box.d.ts +21 -0
  69. package/dist/patterns/box.mjs +15 -0
  70. package/dist/patterns/center.d.ts +21 -0
  71. package/dist/patterns/center.mjs +21 -0
  72. package/dist/patterns/circle.d.ts +21 -0
  73. package/dist/patterns/circle.mjs +25 -0
  74. package/dist/patterns/container.d.ts +21 -0
  75. package/dist/patterns/container.mjs +21 -0
  76. package/dist/patterns/cq.d.ts +22 -0
  77. package/dist/patterns/cq.mjs +21 -0
  78. package/dist/patterns/divider.d.ts +23 -0
  79. package/dist/patterns/divider.mjs +25 -0
  80. package/dist/patterns/flex.d.ts +27 -0
  81. package/dist/patterns/flex.mjs +26 -0
  82. package/dist/patterns/float.d.ts +24 -0
  83. package/dist/patterns/float.mjs +52 -0
  84. package/dist/patterns/grid-item.d.ts +26 -0
  85. package/dist/patterns/grid-item.mjs +25 -0
  86. package/dist/patterns/grid.d.ts +25 -0
  87. package/dist/patterns/grid.mjs +27 -0
  88. package/dist/patterns/hstack.d.ts +22 -0
  89. package/dist/patterns/hstack.mjs +24 -0
  90. package/dist/patterns/index.d.ts +21 -0
  91. package/dist/patterns/index.mjs +20 -0
  92. package/dist/patterns/link-overlay.d.ts +21 -0
  93. package/dist/patterns/link-overlay.mjs +24 -0
  94. package/dist/patterns/spacer.d.ts +21 -0
  95. package/dist/patterns/spacer.mjs +21 -0
  96. package/dist/patterns/square.d.ts +21 -0
  97. package/dist/patterns/square.mjs +24 -0
  98. package/dist/patterns/stack.d.ts +24 -0
  99. package/dist/patterns/stack.mjs +24 -0
  100. package/dist/patterns/visually-hidden.d.ts +21 -0
  101. package/dist/patterns/visually-hidden.mjs +18 -0
  102. package/dist/patterns/vstack.d.ts +22 -0
  103. package/dist/patterns/vstack.mjs +24 -0
  104. package/dist/patterns/wrap.d.ts +25 -0
  105. package/dist/patterns/wrap.mjs +25 -0
  106. package/dist/recipes/action-btn.d.ts +43 -0
  107. package/dist/recipes/action-btn.mjs +41 -0
  108. package/dist/recipes/create-recipe.mjs +82 -0
  109. package/dist/recipes/index.d.ts +2 -0
  110. package/dist/recipes/index.mjs +1 -0
  111. package/dist/styles.css +1601 -0
  112. package/dist/tokens/index.d.ts +9 -0
  113. package/dist/tokens/index.mjs +5044 -0
  114. package/dist/tokens/tokens.d.ts +45 -0
  115. package/dist/types/composition.d.ts +164 -0
  116. package/dist/types/conditions.d.ts +328 -0
  117. package/dist/types/csstype.d.ts +21298 -0
  118. package/dist/types/global.d.ts +20 -0
  119. package/dist/types/index.d.ts +8 -0
  120. package/dist/types/jsx.d.ts +52 -0
  121. package/dist/types/parts.d.ts +8 -0
  122. package/dist/types/pattern.d.ts +78 -0
  123. package/dist/types/prop-type.d.ts +232 -0
  124. package/dist/types/recipe.d.ts +181 -0
  125. package/dist/types/selectors.d.ts +59 -0
  126. package/dist/types/static-css.d.ts +56 -0
  127. package/dist/types/style-props.d.ts +7499 -0
  128. package/dist/types/system-types.d.ts +193 -0
  129. package/package.json +85 -0
  130. package/panda.config.ts +6 -0
  131. package/postcss.d.mts +6 -0
  132. package/postcss.mjs +2 -0
  133. package/preset.d.mts +2746 -0
  134. package/preset.mjs +2746 -0
  135. package/preset.ts +3 -0
  136. package/vite.d.mts +5 -0
  137. package/vite.mjs +5 -0
@@ -0,0 +1,1601 @@
1
+ @layer reset, base, tokens, recipes, utilities;
2
+
3
+ @layer base{
4
+ :root {
5
+ --made-with-panda: '🐼';
6
+ }
7
+
8
+ :where(:host, :root) {
9
+ --likec4-app-font-default: 'IBM Plex Sans','ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"';
10
+ }
11
+
12
+ .likec4-shadow-root {
13
+ display: contents;
14
+ --mantine-font-family: var(--likec4-app-font-default);
15
+ --mantine-font-family-headings: var(--likec4-app-font-default);
16
+ }
17
+
18
+ .likec4-root {
19
+ overflow: hidden;
20
+ position: relative;
21
+ width: 100%;
22
+ height: 100%;
23
+ padding: var(--spacing-0);
24
+ margin: var(--spacing-0);
25
+ box-sizing: border-box;
26
+ border: 0px solid transparent;
27
+ }
28
+
29
+ .likec4-root .react-flow:is(.not-initialized) {
30
+ opacity: 0;
31
+ }
32
+
33
+ :where(.likec4-root .mantine-ActionIcon-icon) .tabler-icon {
34
+ width: 75%;
35
+ height: 75%;
36
+ }
37
+
38
+ .likec4-root :where(.react-flow__node, .react-flow__edge, .likec4-edge-label-container):has([data-likec4-dimmed]) {
39
+ opacity: 0.25;
40
+ }
41
+
42
+ .likec4-root:not([data-likec4-reduced-graphics]):not([data-likec4-diagram-panning]) :where(.react-flow__node, .react-flow__edge, .likec4-edge-label-container):has([data-likec4-dimmed]) {
43
+ filter: var(--blur, ) var(--brightness, ) var(--contrast, ) var(--grayscale, ) var(--hue-rotate, ) var(--invert, ) var(--saturate, ) var(--sepia, ) var(--drop-shadow, );
44
+ --grayscale: grayscale(0.85);
45
+ --blur: blur(3px);
46
+ }
47
+
48
+ .likec4-root:not([data-likec4-reduced-graphics]):not([data-likec4-diagram-panning]) :where(.react-flow__node, .react-flow__edge, .likec4-edge-label-container):has([data-likec4-dimmed="true"]) {
49
+ --transition-prop: opacity, filter;
50
+ transition-property: opacity, filter;
51
+ --transition-easing: var(--easings-in-out);
52
+ transition-timing-function: var(--easings-in-out);
53
+ --transition-duration: 800ms;
54
+ transition-duration: 800ms;
55
+ transition-delay: 200ms;
56
+ }
57
+
58
+ [data-mantine-color-scheme="dark"] .likec4-root:not([data-likec4-reduced-graphics]):not([data-likec4-diagram-panning]) .react-flow__edges > svg {
59
+ mix-blend-mode: plus-lighter;
60
+ }
61
+
62
+ :where([data-likec4-text-size='xs']) {
63
+ --likec4-text-size: var(--font-sizes-likec4-xs);
64
+ }
65
+
66
+ :where([data-likec4-text-size='sm']) {
67
+ --likec4-text-size: var(--font-sizes-likec4-sm);
68
+ }
69
+
70
+ :where([data-likec4-text-size='md']) {
71
+ --likec4-text-size: var(--font-sizes-likec4-md);
72
+ }
73
+
74
+ :where([data-likec4-text-size='lg']) {
75
+ --likec4-text-size: var(--font-sizes-likec4-lg);
76
+ }
77
+
78
+ :where([data-likec4-text-size='xl']) {
79
+ --likec4-text-size: var(--font-sizes-likec4-xl);
80
+ }
81
+
82
+ :where([data-likec4-spacing='xs']) {
83
+ --likec4-spacing: var(--spacing-likec4-xs);
84
+ }
85
+
86
+ :where([data-likec4-spacing='sm']) {
87
+ --likec4-spacing: var(--spacing-likec4-sm);
88
+ }
89
+
90
+ :where([data-likec4-spacing='md']) {
91
+ --likec4-spacing: var(--spacing-likec4-md);
92
+ }
93
+
94
+ :where([data-likec4-spacing='lg']) {
95
+ --likec4-spacing: var(--spacing-likec4-lg);
96
+ }
97
+
98
+ :where([data-likec4-spacing='xl']) {
99
+ --likec4-spacing: var(--spacing-likec4-xl);
100
+ }
101
+
102
+ *,::before,::after,::backdrop {
103
+ --blur: /*-*/ /*-*/;
104
+ --brightness: /*-*/ /*-*/;
105
+ --contrast: /*-*/ /*-*/;
106
+ --grayscale: /*-*/ /*-*/;
107
+ --hue-rotate: /*-*/ /*-*/;
108
+ --invert: /*-*/ /*-*/;
109
+ --saturate: /*-*/ /*-*/;
110
+ --sepia: /*-*/ /*-*/;
111
+ --drop-shadow: /*-*/ /*-*/;
112
+ --backdrop-blur: /*-*/ /*-*/;
113
+ --backdrop-brightness: /*-*/ /*-*/;
114
+ --backdrop-contrast: /*-*/ /*-*/;
115
+ --backdrop-grayscale: /*-*/ /*-*/;
116
+ --backdrop-hue-rotate: /*-*/ /*-*/;
117
+ --backdrop-invert: /*-*/ /*-*/;
118
+ --backdrop-opacity: /*-*/ /*-*/;
119
+ --backdrop-saturate: /*-*/ /*-*/;
120
+ --backdrop-sepia: /*-*/ /*-*/;
121
+ --gradient-from-position: /*-*/ /*-*/;
122
+ --gradient-to-position: /*-*/ /*-*/;
123
+ --gradient-via-position: /*-*/ /*-*/;
124
+ --scroll-snap-strictness: proximity;
125
+ --border-spacing-x: 0;
126
+ --border-spacing-y: 0;
127
+ --translate-x: 0;
128
+ --translate-y: 0;
129
+ --rotate: 0;
130
+ --rotate-x: 0;
131
+ --rotate-y: 0;
132
+ --skew-x: 0;
133
+ --skew-y: 0;
134
+ --scale-x: 1;
135
+ --scale-y: 1;
136
+ }
137
+
138
+ @property --likec4-palette {
139
+ syntax: '*';
140
+
141
+ inherits: false;
142
+
143
+ initial-value: 'likec4.primary';
144
+ }
145
+
146
+ @property --likec4-text-size {
147
+ syntax: '<length-percentage>';
148
+
149
+ inherits: false;
150
+
151
+ initial-value: 1rem;
152
+ }
153
+
154
+ @property --likec4-spacing {
155
+ syntax: '<length-percentage>';
156
+
157
+ inherits: false;
158
+
159
+ initial-value: 1rem;
160
+ }
161
+ }
162
+
163
+ @layer tokens{
164
+ :where(:root, :host) {
165
+ --radii-xs: var(--mantine-radius-xs);
166
+ --radii-sm: var(--mantine-radius-sm);
167
+ --radii-md: var(--mantine-radius-md);
168
+ --radii-lg: var(--mantine-radius-lg);
169
+ --radii-xl: var(--mantine-radius-xl);
170
+ --font-sizes-xxs: 0.625rem;
171
+ --font-sizes-xs: calc(0.75rem * var(--mantine-scale));
172
+ --font-sizes-sm: calc(0.875rem * var(--mantine-scale));
173
+ --font-sizes-md: calc(1rem * var(--mantine-scale));
174
+ --font-sizes-lg: calc(1.125rem * var(--mantine-scale));
175
+ --font-sizes-xl: calc(1.25rem * var(--mantine-scale));
176
+ --font-sizes-likec4-xs: 0.750rem;
177
+ --font-sizes-likec4-sm: 0.875rem;
178
+ --font-sizes-likec4-md: 1.19rem;
179
+ --font-sizes-likec4-lg: 1.50rem;
180
+ --font-sizes-likec4-xl: 2.00rem;
181
+ --shadows-xs: 0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), 0 calc(0.0625rem * var(--mantine-scale)) calc(0.125rem * var(--mantine-scale)) rgba(0, 0, 0, 0.1);
182
+ --shadows-sm: 0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(0.625rem * var(--mantine-scale)) calc(0.9375rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(0.4375rem * var(--mantine-scale)) calc(0.4375rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale));
183
+ --shadows-md: 0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(1.25rem * var(--mantine-scale)) calc(1.5625rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(0.625rem * var(--mantine-scale)) calc(0.625rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale));
184
+ --shadows-lg: 0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(1.75rem * var(--mantine-scale)) calc(1.4375rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(0.75rem * var(--mantine-scale)) calc(0.75rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale));
185
+ --shadows-xl: 0 calc(0.0625rem * var(--mantine-scale)) calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 0 calc(2.25rem * var(--mantine-scale)) calc(1.75rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale)), rgba(0, 0, 0, 0.04) 0 calc(1.0625rem * var(--mantine-scale)) calc(1.0625rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale));
186
+ --line-heights-1: 1;
187
+ --line-heights-xs: 1.4;
188
+ --line-heights-sm: 1.45;
189
+ --line-heights-md: 1.55;
190
+ --line-heights-lg: 1.6;
191
+ --line-heights-xl: 1.65;
192
+ --borders-none: none;
193
+ --borders-transparent: 0px solid transparent;
194
+ --borders-default: 1px solid var(--colors-mantine-colors-default-border);
195
+ --spacing-0: 0px;
196
+ --spacing-2: 2px;
197
+ --spacing-4: 4px;
198
+ --spacing-8: 8px;
199
+ --spacing-xs: calc(0.625rem * var(--mantine-scale));
200
+ --spacing-sm: calc(0.75rem * var(--mantine-scale));
201
+ --spacing-md: calc(1rem * var(--mantine-scale));
202
+ --spacing-lg: calc(1.25rem * var(--mantine-scale));
203
+ --spacing-xl: calc(2rem * var(--mantine-scale));
204
+ --spacing-likec4-xs: 8px;
205
+ --spacing-likec4-sm: 10px;
206
+ --spacing-likec4-md: 16px;
207
+ --spacing-likec4-lg: 24px;
208
+ --spacing-likec4-xl: 32px;
209
+ --spacing-micro: 4px;
210
+ --spacing-2xs: 8px;
211
+ --colors-mantine-colors-primary: var(--mantine-primary-color-6);
212
+ --colors-mantine-colors-primary-filled: var(--mantine-primary-color-filled);
213
+ --colors-mantine-colors-primary-filled-hover: var(--mantine-primary-color-filled-hover);
214
+ --colors-mantine-colors-primary-light: var(--mantine-primary-color-light);
215
+ --colors-mantine-colors-primary-light-hover: var(--mantine-primary-color-light-hover);
216
+ --colors-mantine-colors-primary-light-color: var(--mantine-primary-color-light-color);
217
+ --colors-mantine-colors-primary-outline: var(--mantine-primary-color-outline);
218
+ --colors-mantine-colors-primary-outline-hover: var(--mantine-primary-color-outline-hover);
219
+ --colors-mantine-colors-primary\[0\]: var(--mantine-primary-color-0);
220
+ --colors-mantine-colors-primary\[1\]: var(--mantine-primary-color-1);
221
+ --colors-mantine-colors-primary\[2\]: var(--mantine-primary-color-2);
222
+ --colors-mantine-colors-primary\[3\]: var(--mantine-primary-color-3);
223
+ --colors-mantine-colors-primary\[4\]: var(--mantine-primary-color-4);
224
+ --colors-mantine-colors-primary\[5\]: var(--mantine-primary-color-5);
225
+ --colors-mantine-colors-primary\[6\]: var(--mantine-primary-color-6);
226
+ --colors-mantine-colors-primary\[7\]: var(--mantine-primary-color-7);
227
+ --colors-mantine-colors-primary\[8\]: var(--mantine-primary-color-8);
228
+ --colors-mantine-colors-primary\[9\]: var(--mantine-primary-color-9);
229
+ --colors-mantine-colors-white: var(--mantine-color-white);
230
+ --colors-mantine-colors-text: var(--mantine-color-text);
231
+ --colors-mantine-colors-body: var(--mantine-color-body);
232
+ --colors-mantine-colors-dimmed: var(--mantine-color-dimmed);
233
+ --colors-mantine-colors-default-border: var(--mantine-color-default-border);
234
+ --colors-mantine-colors-default-color: var(--mantine-color-default-color);
235
+ --colors-mantine-colors-default-hover: var(--mantine-color-default-hover);
236
+ --colors-mantine-colors-default: var(--mantine-color-default);
237
+ --colors-mantine-colors-error: var(--mantine-color-error);
238
+ --colors-mantine-colors-placeholder: var(--mantine-color-placeholder);
239
+ --colors-mantine-colors-gray: var(--mantine-color-gray-6);
240
+ --colors-mantine-colors-gray-filled: var(--mantine-color-gray-filled);
241
+ --colors-mantine-colors-gray-filled-hover: var(--mantine-color-gray-filled-hover);
242
+ --colors-mantine-colors-gray-light: var(--mantine-color-gray-light);
243
+ --colors-mantine-colors-gray-light-hover: var(--mantine-color-gray-light-hover);
244
+ --colors-mantine-colors-gray-light-color: var(--mantine-color-gray-light-color);
245
+ --colors-mantine-colors-gray-outline: var(--mantine-color-gray-outline);
246
+ --colors-mantine-colors-gray-outline-hover: var(--mantine-color-gray-outline-hover);
247
+ --colors-mantine-colors-gray\[0\]: var(--mantine-color-gray-0);
248
+ --colors-mantine-colors-gray\[1\]: var(--mantine-color-gray-1);
249
+ --colors-mantine-colors-gray\[2\]: var(--mantine-color-gray-2);
250
+ --colors-mantine-colors-gray\[3\]: var(--mantine-color-gray-3);
251
+ --colors-mantine-colors-gray\[4\]: var(--mantine-color-gray-4);
252
+ --colors-mantine-colors-gray\[5\]: var(--mantine-color-gray-5);
253
+ --colors-mantine-colors-gray\[6\]: var(--mantine-color-gray-6);
254
+ --colors-mantine-colors-gray\[7\]: var(--mantine-color-gray-7);
255
+ --colors-mantine-colors-gray\[8\]: var(--mantine-color-gray-8);
256
+ --colors-mantine-colors-gray\[9\]: var(--mantine-color-gray-9);
257
+ --colors-mantine-colors-dark: var(--mantine-color-dark-6);
258
+ --colors-mantine-colors-dark-filled: var(--mantine-color-dark-filled);
259
+ --colors-mantine-colors-dark-filled-hover: var(--mantine-color-dark-filled-hover);
260
+ --colors-mantine-colors-dark-light: var(--mantine-color-dark-light);
261
+ --colors-mantine-colors-dark-light-hover: var(--mantine-color-dark-light-hover);
262
+ --colors-mantine-colors-dark-light-color: var(--mantine-color-dark-light-color);
263
+ --colors-mantine-colors-dark-outline: var(--mantine-color-dark-outline);
264
+ --colors-mantine-colors-dark-outline-hover: var(--mantine-color-dark-outline-hover);
265
+ --colors-mantine-colors-dark\[0\]: var(--mantine-color-dark-0);
266
+ --colors-mantine-colors-dark\[1\]: var(--mantine-color-dark-1);
267
+ --colors-mantine-colors-dark\[2\]: var(--mantine-color-dark-2);
268
+ --colors-mantine-colors-dark\[3\]: var(--mantine-color-dark-3);
269
+ --colors-mantine-colors-dark\[4\]: var(--mantine-color-dark-4);
270
+ --colors-mantine-colors-dark\[5\]: var(--mantine-color-dark-5);
271
+ --colors-mantine-colors-dark\[6\]: var(--mantine-color-dark-6);
272
+ --colors-mantine-colors-dark\[7\]: var(--mantine-color-dark-7);
273
+ --colors-mantine-colors-dark\[8\]: var(--mantine-color-dark-8);
274
+ --colors-mantine-colors-dark\[9\]: var(--mantine-color-dark-9);
275
+ --colors-mantine-colors-orange: var(--mantine-color-orange-6);
276
+ --colors-mantine-colors-orange-filled: var(--mantine-color-orange-filled);
277
+ --colors-mantine-colors-orange-filled-hover: var(--mantine-color-orange-filled-hover);
278
+ --colors-mantine-colors-orange-light: var(--mantine-color-orange-light);
279
+ --colors-mantine-colors-orange-light-hover: var(--mantine-color-orange-light-hover);
280
+ --colors-mantine-colors-orange-light-color: var(--mantine-color-orange-light-color);
281
+ --colors-mantine-colors-orange-outline: var(--mantine-color-orange-outline);
282
+ --colors-mantine-colors-orange-outline-hover: var(--mantine-color-orange-outline-hover);
283
+ --colors-mantine-colors-orange\[0\]: var(--mantine-color-orange-0);
284
+ --colors-mantine-colors-orange\[1\]: var(--mantine-color-orange-1);
285
+ --colors-mantine-colors-orange\[2\]: var(--mantine-color-orange-2);
286
+ --colors-mantine-colors-orange\[3\]: var(--mantine-color-orange-3);
287
+ --colors-mantine-colors-orange\[4\]: var(--mantine-color-orange-4);
288
+ --colors-mantine-colors-orange\[5\]: var(--mantine-color-orange-5);
289
+ --colors-mantine-colors-orange\[6\]: var(--mantine-color-orange-6);
290
+ --colors-mantine-colors-orange\[7\]: var(--mantine-color-orange-7);
291
+ --colors-mantine-colors-orange\[8\]: var(--mantine-color-orange-8);
292
+ --colors-mantine-colors-orange\[9\]: var(--mantine-color-orange-9);
293
+ --colors-mantine-colors-teal: var(--mantine-color-teal-6);
294
+ --colors-mantine-colors-teal-filled: var(--mantine-color-teal-filled);
295
+ --colors-mantine-colors-teal-filled-hover: var(--mantine-color-teal-filled-hover);
296
+ --colors-mantine-colors-teal-light: var(--mantine-color-teal-light);
297
+ --colors-mantine-colors-teal-light-hover: var(--mantine-color-teal-light-hover);
298
+ --colors-mantine-colors-teal-light-color: var(--mantine-color-teal-light-color);
299
+ --colors-mantine-colors-teal-outline: var(--mantine-color-teal-outline);
300
+ --colors-mantine-colors-teal-outline-hover: var(--mantine-color-teal-outline-hover);
301
+ --colors-mantine-colors-teal\[0\]: var(--mantine-color-teal-0);
302
+ --colors-mantine-colors-teal\[1\]: var(--mantine-color-teal-1);
303
+ --colors-mantine-colors-teal\[2\]: var(--mantine-color-teal-2);
304
+ --colors-mantine-colors-teal\[3\]: var(--mantine-color-teal-3);
305
+ --colors-mantine-colors-teal\[4\]: var(--mantine-color-teal-4);
306
+ --colors-mantine-colors-teal\[5\]: var(--mantine-color-teal-5);
307
+ --colors-mantine-colors-teal\[6\]: var(--mantine-color-teal-6);
308
+ --colors-mantine-colors-teal\[7\]: var(--mantine-color-teal-7);
309
+ --colors-mantine-colors-teal\[8\]: var(--mantine-color-teal-8);
310
+ --colors-mantine-colors-teal\[9\]: var(--mantine-color-teal-9);
311
+ --colors-mantine-colors-red: var(--mantine-color-red-6);
312
+ --colors-mantine-colors-red-filled: var(--mantine-color-red-filled);
313
+ --colors-mantine-colors-red-filled-hover: var(--mantine-color-red-filled-hover);
314
+ --colors-mantine-colors-red-light: var(--mantine-color-red-light);
315
+ --colors-mantine-colors-red-light-hover: var(--mantine-color-red-light-hover);
316
+ --colors-mantine-colors-red-light-color: var(--mantine-color-red-light-color);
317
+ --colors-mantine-colors-red-outline: var(--mantine-color-red-outline);
318
+ --colors-mantine-colors-red-outline-hover: var(--mantine-color-red-outline-hover);
319
+ --colors-mantine-colors-red\[0\]: var(--mantine-color-red-0);
320
+ --colors-mantine-colors-red\[1\]: var(--mantine-color-red-1);
321
+ --colors-mantine-colors-red\[2\]: var(--mantine-color-red-2);
322
+ --colors-mantine-colors-red\[3\]: var(--mantine-color-red-3);
323
+ --colors-mantine-colors-red\[4\]: var(--mantine-color-red-4);
324
+ --colors-mantine-colors-red\[5\]: var(--mantine-color-red-5);
325
+ --colors-mantine-colors-red\[6\]: var(--mantine-color-red-6);
326
+ --colors-mantine-colors-red\[7\]: var(--mantine-color-red-7);
327
+ --colors-mantine-colors-red\[8\]: var(--mantine-color-red-8);
328
+ --colors-mantine-colors-red\[9\]: var(--mantine-color-red-9);
329
+ --colors-mantine-colors-green: var(--mantine-color-green-6);
330
+ --colors-mantine-colors-green-filled: var(--mantine-color-green-filled);
331
+ --colors-mantine-colors-green-filled-hover: var(--mantine-color-green-filled-hover);
332
+ --colors-mantine-colors-green-light: var(--mantine-color-green-light);
333
+ --colors-mantine-colors-green-light-hover: var(--mantine-color-green-light-hover);
334
+ --colors-mantine-colors-green-light-color: var(--mantine-color-green-light-color);
335
+ --colors-mantine-colors-green-outline: var(--mantine-color-green-outline);
336
+ --colors-mantine-colors-green-outline-hover: var(--mantine-color-green-outline-hover);
337
+ --colors-mantine-colors-green\[0\]: var(--mantine-color-green-0);
338
+ --colors-mantine-colors-green\[1\]: var(--mantine-color-green-1);
339
+ --colors-mantine-colors-green\[2\]: var(--mantine-color-green-2);
340
+ --colors-mantine-colors-green\[3\]: var(--mantine-color-green-3);
341
+ --colors-mantine-colors-green\[4\]: var(--mantine-color-green-4);
342
+ --colors-mantine-colors-green\[5\]: var(--mantine-color-green-5);
343
+ --colors-mantine-colors-green\[6\]: var(--mantine-color-green-6);
344
+ --colors-mantine-colors-green\[7\]: var(--mantine-color-green-7);
345
+ --colors-mantine-colors-green\[8\]: var(--mantine-color-green-8);
346
+ --colors-mantine-colors-green\[9\]: var(--mantine-color-green-9);
347
+ --colors-mantine-colors-yellow: var(--mantine-color-yellow-6);
348
+ --colors-mantine-colors-yellow-filled: var(--mantine-color-yellow-filled);
349
+ --colors-mantine-colors-yellow-filled-hover: var(--mantine-color-yellow-filled-hover);
350
+ --colors-mantine-colors-yellow-light: var(--mantine-color-yellow-light);
351
+ --colors-mantine-colors-yellow-light-hover: var(--mantine-color-yellow-light-hover);
352
+ --colors-mantine-colors-yellow-light-color: var(--mantine-color-yellow-light-color);
353
+ --colors-mantine-colors-yellow-outline: var(--mantine-color-yellow-outline);
354
+ --colors-mantine-colors-yellow-outline-hover: var(--mantine-color-yellow-outline-hover);
355
+ --colors-mantine-colors-yellow\[0\]: var(--mantine-color-yellow-0);
356
+ --colors-mantine-colors-yellow\[1\]: var(--mantine-color-yellow-1);
357
+ --colors-mantine-colors-yellow\[2\]: var(--mantine-color-yellow-2);
358
+ --colors-mantine-colors-yellow\[3\]: var(--mantine-color-yellow-3);
359
+ --colors-mantine-colors-yellow\[4\]: var(--mantine-color-yellow-4);
360
+ --colors-mantine-colors-yellow\[5\]: var(--mantine-color-yellow-5);
361
+ --colors-mantine-colors-yellow\[6\]: var(--mantine-color-yellow-6);
362
+ --colors-mantine-colors-yellow\[7\]: var(--mantine-color-yellow-7);
363
+ --colors-mantine-colors-yellow\[8\]: var(--mantine-color-yellow-8);
364
+ --colors-mantine-colors-yellow\[9\]: var(--mantine-color-yellow-9);
365
+ --colors-transparent: transparent;
366
+ --fonts-body: var(--likec4-app-font, var(--likec4-app-font-default));
367
+ --fonts-likec4: var(--likec4-app-font, var(--likec4-app-font-default));
368
+ --fonts-likec4-element: var(--likec4-element-font, var(--fonts-likec4));
369
+ --fonts-likec4-compound: var(--likec4-compound-font, var(--fonts-likec4));
370
+ --fonts-likec4-relation: var(--likec4-relation-font, var(--fonts-likec4));
371
+ --easings-default: cubic-bezier(0.4, 0, 0.2, 1);
372
+ --easings-in: cubic-bezier(0.4, 0, 1, 1);
373
+ --easings-out: cubic-bezier(0, 0, 0.40, 1);
374
+ --easings-in-out: cubic-bezier(0.50, 0, 0.2, 1);
375
+ --durations-fastest: 50ms;
376
+ --durations-faster: 100ms;
377
+ --durations-fast: 130ms;
378
+ --durations-normal: 170ms;
379
+ --durations-slow: 300ms;
380
+ --durations-slower: 400ms;
381
+ --durations-slowest: 500ms;
382
+ --breakpoints-xs: 36em;
383
+ --breakpoints-sm: 48em;
384
+ --breakpoints-md: 62em;
385
+ --breakpoints-lg: 75em;
386
+ --breakpoints-xl: 88em;
387
+ --sizes-breakpoint-xs: 36em;
388
+ --sizes-breakpoint-sm: 48em;
389
+ --sizes-breakpoint-md: 62em;
390
+ --sizes-breakpoint-lg: 75em;
391
+ --sizes-breakpoint-xl: 88em;
392
+ --font-sizes-likec4-text-size: var(--font-sizes-likec4-md);
393
+ --colors-likec4-background: var(--colors-mantine-colors-body);
394
+ --colors-likec4-background-pattern: var(--colors-mantine-colors-dark\[5\]);
395
+ --colors-likec4-amber-element-fill: #A35829;
396
+ --colors-likec4-amber-element-stroke: #7E451D;
397
+ --colors-likec4-amber-element-hi-contrast: #FFE0C2;
398
+ --colors-likec4-amber-element-lo-contrast: #f9b27c;
399
+ --colors-likec4-amber-relation-stroke: #b45309;
400
+ --colors-likec4-amber-relation-label: #FFE0C2;
401
+ --colors-likec4-amber-relation-label-bg: #78350f;
402
+ --colors-likec4-blue-element-fill: #3b82f6;
403
+ --colors-likec4-blue-element-stroke: #2563eb;
404
+ --colors-likec4-blue-element-hi-contrast: #eff6ff;
405
+ --colors-likec4-blue-element-lo-contrast: #bfdbfe;
406
+ --colors-likec4-blue-relation-stroke: #3b82f6;
407
+ --colors-likec4-blue-relation-label: #60a5fa;
408
+ --colors-likec4-blue-relation-label-bg: #172554;
409
+ --colors-likec4-gray-element-fill: #737373;
410
+ --colors-likec4-gray-element-stroke: #525252;
411
+ --colors-likec4-gray-element-hi-contrast: #fafafa;
412
+ --colors-likec4-gray-element-lo-contrast: #d4d4d4;
413
+ --colors-likec4-gray-relation-stroke: #6E6E6E;
414
+ --colors-likec4-gray-relation-label: #C6C6C6;
415
+ --colors-likec4-gray-relation-label-bg: #18191b;
416
+ --colors-likec4-slate-element-fill: #64748b;
417
+ --colors-likec4-slate-element-stroke: #475569;
418
+ --colors-likec4-slate-element-hi-contrast: #f8fafc;
419
+ --colors-likec4-slate-element-lo-contrast: #cbd5e1;
420
+ --colors-likec4-slate-relation-stroke: #64748b;
421
+ --colors-likec4-slate-relation-label: #cbd5e1;
422
+ --colors-likec4-slate-relation-label-bg: #0f172a;
423
+ --colors-likec4-green-element-fill: #428a4f;
424
+ --colors-likec4-green-element-stroke: #2d5d39;
425
+ --colors-likec4-green-element-hi-contrast: #f8fafc;
426
+ --colors-likec4-green-element-lo-contrast: #c2f0c2;
427
+ --colors-likec4-green-relation-stroke: #15803d;
428
+ --colors-likec4-green-relation-label: #22c55e;
429
+ --colors-likec4-green-relation-label-bg: #052e16;
430
+ --colors-likec4-indigo-element-fill: #6366f1;
431
+ --colors-likec4-indigo-element-stroke: #4f46e5;
432
+ --colors-likec4-indigo-element-hi-contrast: #eef2ff;
433
+ --colors-likec4-indigo-element-lo-contrast: #c7d2fe;
434
+ --colors-likec4-indigo-relation-stroke: #6366f1;
435
+ --colors-likec4-indigo-relation-label: #818cf8;
436
+ --colors-likec4-indigo-relation-label-bg: #1e1b4b;
437
+ --colors-likec4-muted-element-fill: #64748b;
438
+ --colors-likec4-muted-element-stroke: #475569;
439
+ --colors-likec4-muted-element-hi-contrast: #f8fafc;
440
+ --colors-likec4-muted-element-lo-contrast: #cbd5e1;
441
+ --colors-likec4-muted-relation-stroke: #64748b;
442
+ --colors-likec4-muted-relation-label: #cbd5e1;
443
+ --colors-likec4-muted-relation-label-bg: #0f172a;
444
+ --colors-likec4-primary-element-fill: #3b82f6;
445
+ --colors-likec4-primary-element-stroke: #2563eb;
446
+ --colors-likec4-primary-element-hi-contrast: #eff6ff;
447
+ --colors-likec4-primary-element-lo-contrast: #bfdbfe;
448
+ --colors-likec4-primary-relation-stroke: #3b82f6;
449
+ --colors-likec4-primary-relation-label: #60a5fa;
450
+ --colors-likec4-primary-relation-label-bg: #172554;
451
+ --colors-likec4-red-element-fill: #AC4D39;
452
+ --colors-likec4-red-element-stroke: #853A2D;
453
+ --colors-likec4-red-element-hi-contrast: #FBD3CB;
454
+ --colors-likec4-red-element-lo-contrast: #f5b2a3;
455
+ --colors-likec4-red-relation-stroke: #AC4D39;
456
+ --colors-likec4-red-relation-label: #f5b2a3;
457
+ --colors-likec4-red-relation-label-bg: #b91c1c;
458
+ --colors-likec4-secondary-element-fill: #0284c7;
459
+ --colors-likec4-secondary-element-stroke: #0369a1;
460
+ --colors-likec4-secondary-element-hi-contrast: #f0f9ff;
461
+ --colors-likec4-secondary-element-lo-contrast: #B6ECF7;
462
+ --colors-likec4-secondary-relation-stroke: #0ea5e9;
463
+ --colors-likec4-secondary-relation-label: #38bdf8;
464
+ --colors-likec4-secondary-relation-label-bg: #082f49;
465
+ --colors-likec4-sky-element-fill: #0284c7;
466
+ --colors-likec4-sky-element-stroke: #0369a1;
467
+ --colors-likec4-sky-element-hi-contrast: #f0f9ff;
468
+ --colors-likec4-sky-element-lo-contrast: #B6ECF7;
469
+ --colors-likec4-sky-relation-stroke: #0ea5e9;
470
+ --colors-likec4-sky-relation-label: #38bdf8;
471
+ --colors-likec4-sky-relation-label-bg: #082f49;
472
+ --colors-likec4-compound1-amber-hi-contrast: var(--colors-likec4-amber-element-hi-contrast);
473
+ --colors-likec4-compound1-amber-lo-contrast: var(--colors-likec4-amber-element-lo-contrast);
474
+ --colors-likec4-compound1-blue-hi-contrast: var(--colors-likec4-blue-element-hi-contrast);
475
+ --colors-likec4-compound1-blue-lo-contrast: var(--colors-likec4-blue-element-lo-contrast);
476
+ --colors-likec4-compound1-gray-hi-contrast: var(--colors-likec4-gray-element-hi-contrast);
477
+ --colors-likec4-compound1-gray-lo-contrast: var(--colors-likec4-gray-element-lo-contrast);
478
+ --colors-likec4-compound1-slate-hi-contrast: var(--colors-likec4-slate-element-hi-contrast);
479
+ --colors-likec4-compound1-slate-lo-contrast: var(--colors-likec4-slate-element-lo-contrast);
480
+ --colors-likec4-compound1-green-hi-contrast: var(--colors-likec4-green-element-hi-contrast);
481
+ --colors-likec4-compound1-green-lo-contrast: var(--colors-likec4-green-element-lo-contrast);
482
+ --colors-likec4-compound1-indigo-hi-contrast: var(--colors-likec4-indigo-element-hi-contrast);
483
+ --colors-likec4-compound1-indigo-lo-contrast: var(--colors-likec4-indigo-element-lo-contrast);
484
+ --colors-likec4-compound1-muted-hi-contrast: var(--colors-likec4-muted-element-hi-contrast);
485
+ --colors-likec4-compound1-muted-lo-contrast: var(--colors-likec4-muted-element-lo-contrast);
486
+ --colors-likec4-compound1-primary-hi-contrast: var(--colors-likec4-primary-element-hi-contrast);
487
+ --colors-likec4-compound1-primary-lo-contrast: var(--colors-likec4-primary-element-lo-contrast);
488
+ --colors-likec4-compound1-red-hi-contrast: var(--colors-likec4-red-element-hi-contrast);
489
+ --colors-likec4-compound1-red-lo-contrast: var(--colors-likec4-red-element-lo-contrast);
490
+ --colors-likec4-compound1-secondary-hi-contrast: var(--colors-likec4-secondary-element-hi-contrast);
491
+ --colors-likec4-compound1-secondary-lo-contrast: var(--colors-likec4-secondary-element-lo-contrast);
492
+ --colors-likec4-compound1-sky-hi-contrast: var(--colors-likec4-sky-element-hi-contrast);
493
+ --colors-likec4-compound1-sky-lo-contrast: var(--colors-likec4-sky-element-lo-contrast);
494
+ --colors-likec4-compound2-amber-hi-contrast: var(--colors-likec4-amber-element-hi-contrast);
495
+ --colors-likec4-compound2-amber-lo-contrast: var(--colors-likec4-amber-element-lo-contrast);
496
+ --colors-likec4-compound2-blue-hi-contrast: var(--colors-likec4-blue-element-hi-contrast);
497
+ --colors-likec4-compound2-blue-lo-contrast: var(--colors-likec4-blue-element-lo-contrast);
498
+ --colors-likec4-compound2-gray-hi-contrast: var(--colors-likec4-gray-element-hi-contrast);
499
+ --colors-likec4-compound2-gray-lo-contrast: var(--colors-likec4-gray-element-lo-contrast);
500
+ --colors-likec4-compound2-slate-hi-contrast: var(--colors-likec4-slate-element-hi-contrast);
501
+ --colors-likec4-compound2-slate-lo-contrast: var(--colors-likec4-slate-element-lo-contrast);
502
+ --colors-likec4-compound2-green-hi-contrast: var(--colors-likec4-green-element-hi-contrast);
503
+ --colors-likec4-compound2-green-lo-contrast: var(--colors-likec4-green-element-lo-contrast);
504
+ --colors-likec4-compound2-indigo-hi-contrast: var(--colors-likec4-indigo-element-hi-contrast);
505
+ --colors-likec4-compound2-indigo-lo-contrast: var(--colors-likec4-indigo-element-lo-contrast);
506
+ --colors-likec4-compound2-muted-hi-contrast: var(--colors-likec4-muted-element-hi-contrast);
507
+ --colors-likec4-compound2-muted-lo-contrast: var(--colors-likec4-muted-element-lo-contrast);
508
+ --colors-likec4-compound2-primary-hi-contrast: var(--colors-likec4-primary-element-hi-contrast);
509
+ --colors-likec4-compound2-primary-lo-contrast: var(--colors-likec4-primary-element-lo-contrast);
510
+ --colors-likec4-compound2-red-hi-contrast: var(--colors-likec4-red-element-hi-contrast);
511
+ --colors-likec4-compound2-red-lo-contrast: var(--colors-likec4-red-element-lo-contrast);
512
+ --colors-likec4-compound2-secondary-hi-contrast: var(--colors-likec4-secondary-element-hi-contrast);
513
+ --colors-likec4-compound2-secondary-lo-contrast: var(--colors-likec4-secondary-element-lo-contrast);
514
+ --colors-likec4-compound2-sky-hi-contrast: var(--colors-likec4-sky-element-hi-contrast);
515
+ --colors-likec4-compound2-sky-lo-contrast: var(--colors-likec4-sky-element-lo-contrast);
516
+ --colors-likec4-compound3-amber-hi-contrast: var(--colors-likec4-amber-element-hi-contrast);
517
+ --colors-likec4-compound3-amber-lo-contrast: var(--colors-likec4-amber-element-lo-contrast);
518
+ --colors-likec4-compound3-blue-hi-contrast: var(--colors-likec4-blue-element-hi-contrast);
519
+ --colors-likec4-compound3-blue-lo-contrast: var(--colors-likec4-blue-element-lo-contrast);
520
+ --colors-likec4-compound3-gray-hi-contrast: var(--colors-likec4-gray-element-hi-contrast);
521
+ --colors-likec4-compound3-gray-lo-contrast: var(--colors-likec4-gray-element-lo-contrast);
522
+ --colors-likec4-compound3-slate-hi-contrast: var(--colors-likec4-slate-element-hi-contrast);
523
+ --colors-likec4-compound3-slate-lo-contrast: var(--colors-likec4-slate-element-lo-contrast);
524
+ --colors-likec4-compound3-green-hi-contrast: var(--colors-likec4-green-element-hi-contrast);
525
+ --colors-likec4-compound3-green-lo-contrast: var(--colors-likec4-green-element-lo-contrast);
526
+ --colors-likec4-compound3-indigo-hi-contrast: var(--colors-likec4-indigo-element-hi-contrast);
527
+ --colors-likec4-compound3-indigo-lo-contrast: var(--colors-likec4-indigo-element-lo-contrast);
528
+ --colors-likec4-compound3-muted-hi-contrast: var(--colors-likec4-muted-element-hi-contrast);
529
+ --colors-likec4-compound3-muted-lo-contrast: var(--colors-likec4-muted-element-lo-contrast);
530
+ --colors-likec4-compound3-primary-hi-contrast: var(--colors-likec4-primary-element-hi-contrast);
531
+ --colors-likec4-compound3-primary-lo-contrast: var(--colors-likec4-primary-element-lo-contrast);
532
+ --colors-likec4-compound3-red-hi-contrast: var(--colors-likec4-red-element-hi-contrast);
533
+ --colors-likec4-compound3-red-lo-contrast: var(--colors-likec4-red-element-lo-contrast);
534
+ --colors-likec4-compound3-secondary-hi-contrast: var(--colors-likec4-secondary-element-hi-contrast);
535
+ --colors-likec4-compound3-secondary-lo-contrast: var(--colors-likec4-secondary-element-lo-contrast);
536
+ --colors-likec4-compound3-sky-hi-contrast: var(--colors-likec4-sky-element-hi-contrast);
537
+ --colors-likec4-compound3-sky-lo-contrast: var(--colors-likec4-sky-element-lo-contrast);
538
+ --colors-likec4-compound4-amber-hi-contrast: var(--colors-likec4-amber-element-hi-contrast);
539
+ --colors-likec4-compound4-amber-lo-contrast: var(--colors-likec4-amber-element-lo-contrast);
540
+ --colors-likec4-compound4-blue-hi-contrast: var(--colors-likec4-blue-element-hi-contrast);
541
+ --colors-likec4-compound4-blue-lo-contrast: var(--colors-likec4-blue-element-lo-contrast);
542
+ --colors-likec4-compound4-gray-hi-contrast: var(--colors-likec4-gray-element-hi-contrast);
543
+ --colors-likec4-compound4-gray-lo-contrast: var(--colors-likec4-gray-element-lo-contrast);
544
+ --colors-likec4-compound4-slate-hi-contrast: var(--colors-likec4-slate-element-hi-contrast);
545
+ --colors-likec4-compound4-slate-lo-contrast: var(--colors-likec4-slate-element-lo-contrast);
546
+ --colors-likec4-compound4-green-hi-contrast: var(--colors-likec4-green-element-hi-contrast);
547
+ --colors-likec4-compound4-green-lo-contrast: var(--colors-likec4-green-element-lo-contrast);
548
+ --colors-likec4-compound4-indigo-hi-contrast: var(--colors-likec4-indigo-element-hi-contrast);
549
+ --colors-likec4-compound4-indigo-lo-contrast: var(--colors-likec4-indigo-element-lo-contrast);
550
+ --colors-likec4-compound4-muted-hi-contrast: var(--colors-likec4-muted-element-hi-contrast);
551
+ --colors-likec4-compound4-muted-lo-contrast: var(--colors-likec4-muted-element-lo-contrast);
552
+ --colors-likec4-compound4-primary-hi-contrast: var(--colors-likec4-primary-element-hi-contrast);
553
+ --colors-likec4-compound4-primary-lo-contrast: var(--colors-likec4-primary-element-lo-contrast);
554
+ --colors-likec4-compound4-red-hi-contrast: var(--colors-likec4-red-element-hi-contrast);
555
+ --colors-likec4-compound4-red-lo-contrast: var(--colors-likec4-red-element-lo-contrast);
556
+ --colors-likec4-compound4-secondary-hi-contrast: var(--colors-likec4-secondary-element-hi-contrast);
557
+ --colors-likec4-compound4-secondary-lo-contrast: var(--colors-likec4-secondary-element-lo-contrast);
558
+ --colors-likec4-compound4-sky-hi-contrast: var(--colors-likec4-sky-element-hi-contrast);
559
+ --colors-likec4-compound4-sky-lo-contrast: var(--colors-likec4-sky-element-lo-contrast);
560
+ --colors-likec4-compound5-amber-hi-contrast: var(--colors-likec4-amber-element-hi-contrast);
561
+ --colors-likec4-compound5-amber-lo-contrast: var(--colors-likec4-amber-element-lo-contrast);
562
+ --colors-likec4-compound5-blue-hi-contrast: var(--colors-likec4-blue-element-hi-contrast);
563
+ --colors-likec4-compound5-blue-lo-contrast: var(--colors-likec4-blue-element-lo-contrast);
564
+ --colors-likec4-compound5-gray-hi-contrast: var(--colors-likec4-gray-element-hi-contrast);
565
+ --colors-likec4-compound5-gray-lo-contrast: var(--colors-likec4-gray-element-lo-contrast);
566
+ --colors-likec4-compound5-slate-hi-contrast: var(--colors-likec4-slate-element-hi-contrast);
567
+ --colors-likec4-compound5-slate-lo-contrast: var(--colors-likec4-slate-element-lo-contrast);
568
+ --colors-likec4-compound5-green-hi-contrast: var(--colors-likec4-green-element-hi-contrast);
569
+ --colors-likec4-compound5-green-lo-contrast: var(--colors-likec4-green-element-lo-contrast);
570
+ --colors-likec4-compound5-indigo-hi-contrast: var(--colors-likec4-indigo-element-hi-contrast);
571
+ --colors-likec4-compound5-indigo-lo-contrast: var(--colors-likec4-indigo-element-lo-contrast);
572
+ --colors-likec4-compound5-muted-hi-contrast: var(--colors-likec4-muted-element-hi-contrast);
573
+ --colors-likec4-compound5-muted-lo-contrast: var(--colors-likec4-muted-element-lo-contrast);
574
+ --colors-likec4-compound5-primary-hi-contrast: var(--colors-likec4-primary-element-hi-contrast);
575
+ --colors-likec4-compound5-primary-lo-contrast: var(--colors-likec4-primary-element-lo-contrast);
576
+ --colors-likec4-compound5-red-hi-contrast: var(--colors-likec4-red-element-hi-contrast);
577
+ --colors-likec4-compound5-red-lo-contrast: var(--colors-likec4-red-element-lo-contrast);
578
+ --colors-likec4-compound5-secondary-hi-contrast: var(--colors-likec4-secondary-element-hi-contrast);
579
+ --colors-likec4-compound5-secondary-lo-contrast: var(--colors-likec4-secondary-element-lo-contrast);
580
+ --colors-likec4-compound5-sky-hi-contrast: var(--colors-likec4-sky-element-hi-contrast);
581
+ --colors-likec4-compound5-sky-lo-contrast: var(--colors-likec4-sky-element-lo-contrast);
582
+ --colors-likec4-palette: var(--likec4-palette,'likec4.primary');
583
+ --colors-likec4-palette-fill: var(--colors-likec4-primary-element-fill);
584
+ --colors-likec4-palette-stroke: var(--colors-likec4-primary-element-stroke);
585
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-primary-element-hi-contrast);
586
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-primary-element-lo-contrast);
587
+ --colors-likec4-relation-stroke: var(--colors-likec4-gray-relation-stroke);
588
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-gray-relation-stroke-selected);
589
+ --colors-likec4-relation-label: var(--colors-likec4-gray-relation-label);
590
+ --colors-likec4-relation-label-bg: var(--colors-likec4-gray-relation-label-bg);
591
+ }
592
+
593
+ [data-mantine-color-scheme="light"] {
594
+ --colors-likec4-background-pattern: var(--colors-mantine-colors-gray\[4\]);
595
+ --colors-likec4-amber-relation-stroke-selected: #994708;
596
+ --colors-likec4-blue-relation-stroke-selected: #326fd1;
597
+ --colors-likec4-gray-relation-stroke-selected: #5e5e5e;
598
+ --colors-likec4-slate-relation-stroke-selected: #556376;
599
+ --colors-likec4-green-relation-stroke-selected: #126d34;
600
+ --colors-likec4-indigo-relation-stroke-selected: #5457cd;
601
+ --colors-likec4-muted-relation-stroke-selected: #556376;
602
+ --colors-likec4-primary-relation-stroke-selected: #326fd1;
603
+ --colors-likec4-red-relation-stroke-selected: #924130;
604
+ --colors-likec4-secondary-relation-stroke-selected: #0c8cc6;
605
+ --colors-likec4-sky-relation-stroke-selected: #0c8cc6;
606
+ --colors-likec4-compound1-amber-fill: #794524;
607
+ --colors-likec4-compound1-amber-stroke: #5e361a;
608
+ --colors-likec4-compound1-blue-fill: #145ed7;
609
+ --colors-likec4-compound1-blue-stroke: #194bb8;
610
+ --colors-likec4-compound1-gray-fill: #595959;
611
+ --colors-likec4-compound1-gray-stroke: #3f3f3f;
612
+ --colors-likec4-compound1-slate-fill: #4e5a6a;
613
+ --colors-likec4-compound1-slate-stroke: #384250;
614
+ --colors-likec4-compound1-green-fill: #35683e;
615
+ --colors-likec4-compound1-green-stroke: #24462d;
616
+ --colors-likec4-compound1-indigo-fill: #2529e1;
617
+ --colors-likec4-compound1-indigo-stroke: #2d24c2;
618
+ --colors-likec4-compound1-muted-fill: #4e5a6a;
619
+ --colors-likec4-compound1-muted-stroke: #384250;
620
+ --colors-likec4-compound1-primary-fill: #145ed7;
621
+ --colors-likec4-compound1-primary-stroke: #194bb8;
622
+ --colors-likec4-compound1-red-fill: #803e30;
623
+ --colors-likec4-compound1-red-stroke: #632f26;
624
+ --colors-likec4-compound1-secondary-fill: #086392;
625
+ --colors-likec4-compound1-secondary-stroke: #084f76;
626
+ --colors-likec4-compound1-sky-fill: #086392;
627
+ --colors-likec4-compound1-sky-stroke: #084f76;
628
+ --colors-likec4-compound2-amber-fill: #724325;
629
+ --colors-likec4-compound2-amber-stroke: #58341b;
630
+ --colors-likec4-compound2-blue-fill: #195cc8;
631
+ --colors-likec4-compound2-blue-stroke: #1d4aac;
632
+ --colors-likec4-compound2-gray-fill: #555555;
633
+ --colors-likec4-compound2-gray-stroke: #3d3d3d;
634
+ --colors-likec4-compound2-slate-fill: #4c5665;
635
+ --colors-likec4-compound2-slate-stroke: #363f4c;
636
+ --colors-likec4-compound2-green-fill: #35623d;
637
+ --colors-likec4-compound2-green-stroke: #24422c;
638
+ --colors-likec4-compound2-indigo-fill: #2428d7;
639
+ --colors-likec4-compound2-indigo-stroke: #3028b5;
640
+ --colors-likec4-compound2-muted-fill: #4c5665;
641
+ --colors-likec4-compound2-muted-stroke: #363f4c;
642
+ --colors-likec4-compound2-primary-fill: #195cc8;
643
+ --colors-likec4-compound2-primary-stroke: #1d4aac;
644
+ --colors-likec4-compound2-red-fill: #793d31;
645
+ --colors-likec4-compound2-red-stroke: #5e2e26;
646
+ --colors-likec4-compound2-secondary-fill: #0c5e88;
647
+ --colors-likec4-compound2-secondary-stroke: #0b4b6e;
648
+ --colors-likec4-compound2-sky-fill: #0c5e88;
649
+ --colors-likec4-compound2-sky-stroke: #0b4b6e;
650
+ --colors-likec4-compound3-amber-fill: #6b4126;
651
+ --colors-likec4-compound3-amber-stroke: #52321c;
652
+ --colors-likec4-compound3-blue-fill: #1e59ba;
653
+ --colors-likec4-compound3-blue-stroke: #2149a0;
654
+ --colors-likec4-compound3-gray-fill: #525252;
655
+ --colors-likec4-compound3-gray-stroke: #3a3a3a;
656
+ --colors-likec4-compound3-slate-fill: #4a5360;
657
+ --colors-likec4-compound3-slate-stroke: #353d48;
658
+ --colors-likec4-compound3-green-fill: #345d3c;
659
+ --colors-likec4-compound3-green-stroke: #243e2a;
660
+ --colors-likec4-compound3-indigo-fill: #292cc8;
661
+ --colors-likec4-compound3-indigo-stroke: #322ba9;
662
+ --colors-likec4-compound3-muted-fill: #4a5360;
663
+ --colors-likec4-compound3-muted-stroke: #353d48;
664
+ --colors-likec4-compound3-primary-fill: #1e59ba;
665
+ --colors-likec4-compound3-primary-stroke: #2149a0;
666
+ --colors-likec4-compound3-red-fill: #723c31;
667
+ --colors-likec4-compound3-red-stroke: #582e27;
668
+ --colors-likec4-compound3-secondary-fill: #10597f;
669
+ --colors-likec4-compound3-secondary-stroke: #0e4767;
670
+ --colors-likec4-compound3-sky-fill: #10597f;
671
+ --colors-likec4-compound3-sky-stroke: #0e4767;
672
+ --colors-likec4-compound4-amber-fill: #643e27;
673
+ --colors-likec4-compound4-amber-stroke: #4d301d;
674
+ --colors-likec4-compound4-blue-fill: #2357ad;
675
+ --colors-likec4-compound4-blue-stroke: #244795;
676
+ --colors-likec4-compound4-gray-fill: #4e4e4e;
677
+ --colors-likec4-compound4-gray-stroke: #383838;
678
+ --colors-likec4-compound4-slate-fill: #48505b;
679
+ --colors-likec4-compound4-slate-stroke: #333a44;
680
+ --colors-likec4-compound4-green-fill: #33573a;
681
+ --colors-likec4-compound4-green-stroke: #233b29;
682
+ --colors-likec4-compound4-indigo-fill: #2d30ba;
683
+ --colors-likec4-compound4-indigo-stroke: #342e9e;
684
+ --colors-likec4-compound4-muted-fill: #48505b;
685
+ --colors-likec4-compound4-muted-stroke: #333a44;
686
+ --colors-likec4-compound4-primary-fill: #2357ad;
687
+ --colors-likec4-compound4-primary-stroke: #244795;
688
+ --colors-likec4-compound4-red-fill: #6a3b31;
689
+ --colors-likec4-compound4-red-stroke: #522d27;
690
+ --colors-likec4-compound4-secondary-fill: #135475;
691
+ --colors-likec4-compound4-secondary-stroke: #11435f;
692
+ --colors-likec4-compound4-sky-fill: #135475;
693
+ --colors-likec4-compound4-sky-stroke: #11435f;
694
+ --colors-likec4-compound5-amber-fill: #5d3c28;
695
+ --colors-likec4-compound5-amber-stroke: #472f1d;
696
+ --colors-likec4-compound5-blue-fill: #2755a0;
697
+ --colors-likec4-compound5-blue-stroke: #27468a;
698
+ --colors-likec4-compound5-gray-fill: #4b4b4b;
699
+ --colors-likec4-compound5-gray-stroke: #353535;
700
+ --colors-likec4-compound5-slate-fill: #454c56;
701
+ --colors-likec4-compound5-slate-stroke: #323841;
702
+ --colors-likec4-compound5-green-fill: #335238;
703
+ --colors-likec4-compound5-green-stroke: #223728;
704
+ --colors-likec4-compound5-indigo-fill: #3133ac;
705
+ --colors-likec4-compound5-indigo-stroke: #363092;
706
+ --colors-likec4-compound5-muted-fill: #454c56;
707
+ --colors-likec4-compound5-muted-stroke: #323841;
708
+ --colors-likec4-compound5-primary-fill: #2755a0;
709
+ --colors-likec4-compound5-primary-stroke: #27468a;
710
+ --colors-likec4-compound5-red-fill: #633a31;
711
+ --colors-likec4-compound5-red-stroke: #4d2c27;
712
+ --colors-likec4-compound5-secondary-fill: #164f6c;
713
+ --colors-likec4-compound5-secondary-stroke: #133f58;
714
+ --colors-likec4-compound5-sky-fill: #164f6c;
715
+ --colors-likec4-compound5-sky-stroke: #133f58;
716
+ --colors-likec4-mix-color: black
717
+ }
718
+
719
+ [data-mantine-color-scheme="dark"] {
720
+ --colors-likec4-amber-relation-stroke-selected: #cb8753;
721
+ --colors-likec4-blue-relation-stroke-selected: #76a8f9;
722
+ --colors-likec4-gray-relation-stroke-selected: #9a9a9a;
723
+ --colors-likec4-slate-relation-stroke-selected: #939eae;
724
+ --colors-likec4-green-relation-stroke-selected: #5ba677;
725
+ --colors-likec4-indigo-relation-stroke-selected: #9294f5;
726
+ --colors-likec4-muted-relation-stroke-selected: #939eae;
727
+ --colors-likec4-primary-relation-stroke-selected: #76a8f9;
728
+ --colors-likec4-red-relation-stroke-selected: #c58274;
729
+ --colors-likec4-secondary-relation-stroke-selected: #56c0f0;
730
+ --colors-likec4-sky-relation-stroke-selected: #56c0f0;
731
+ --colors-likec4-compound1-amber-fill: #704225;
732
+ --colors-likec4-compound1-amber-stroke: #56331b;
733
+ --colors-likec4-compound1-blue-fill: #1a5bc5;
734
+ --colors-likec4-compound1-blue-stroke: #1e49a9;
735
+ --colors-likec4-compound1-gray-fill: #545454;
736
+ --colors-likec4-compound1-gray-stroke: #3c3c3c;
737
+ --colors-likec4-compound1-slate-fill: #4b5563;
738
+ --colors-likec4-compound1-slate-stroke: #363e4b;
739
+ --colors-likec4-compound1-green-fill: #34613c;
740
+ --colors-likec4-compound1-green-stroke: #24412b;
741
+ --colors-likec4-compound1-indigo-fill: #2529d3;
742
+ --colors-likec4-compound1-indigo-stroke: #3028b2;
743
+ --colors-likec4-compound1-muted-fill: #4b5563;
744
+ --colors-likec4-compound1-muted-stroke: #363e4b;
745
+ --colors-likec4-compound1-primary-fill: #1a5bc5;
746
+ --colors-likec4-compound1-primary-stroke: #1e49a9;
747
+ --colors-likec4-compound1-red-fill: #773d30;
748
+ --colors-likec4-compound1-red-stroke: #5c2e26;
749
+ --colors-likec4-compound1-secondary-fill: #0d5d86;
750
+ --colors-likec4-compound1-secondary-stroke: #0b4a6c;
751
+ --colors-likec4-compound1-sky-fill: #0d5d86;
752
+ --colors-likec4-compound1-sky-stroke: #0b4a6c;
753
+ --colors-likec4-compound2-amber-fill: #663e25;
754
+ --colors-likec4-compound2-amber-stroke: #4e301b;
755
+ --colors-likec4-compound2-blue-fill: #1e56b1;
756
+ --colors-likec4-compound2-blue-stroke: #204698;
757
+ --colors-likec4-compound2-gray-fill: #4e4e4e;
758
+ --colors-likec4-compound2-gray-stroke: #383838;
759
+ --colors-likec4-compound2-slate-fill: #474f5c;
760
+ --colors-likec4-compound2-slate-stroke: #333a45;
761
+ --colors-likec4-compound2-green-fill: #325839;
762
+ --colors-likec4-compound2-green-stroke: #223c29;
763
+ --colors-likec4-compound2-indigo-fill: #282bbf;
764
+ --colors-likec4-compound2-indigo-stroke: #312aa1;
765
+ --colors-likec4-compound2-muted-fill: #474f5c;
766
+ --colors-likec4-compound2-muted-stroke: #333a45;
767
+ --colors-likec4-compound2-primary-fill: #1e56b1;
768
+ --colors-likec4-compound2-primary-stroke: #204698;
769
+ --colors-likec4-compound2-red-fill: #6c3a2f;
770
+ --colors-likec4-compound2-red-stroke: #542c25;
771
+ --colors-likec4-compound2-secondary-fill: #105579;
772
+ --colors-likec4-compound2-secondary-stroke: #0e4462;
773
+ --colors-likec4-compound2-sky-fill: #105579;
774
+ --colors-likec4-compound2-sky-stroke: #0e4462;
775
+ --colors-likec4-compound3-amber-fill: #5c3a25;
776
+ --colors-likec4-compound3-amber-stroke: #472d1b;
777
+ --colors-likec4-compound3-blue-fill: #21519f;
778
+ --colors-likec4-compound3-blue-stroke: #224289;
779
+ --colors-likec4-compound3-gray-fill: #484848;
780
+ --colors-likec4-compound3-gray-stroke: #343434;
781
+ --colors-likec4-compound3-slate-fill: #424a54;
782
+ --colors-likec4-compound3-slate-stroke: #30363f;
783
+ --colors-likec4-compound3-green-fill: #305136;
784
+ --colors-likec4-compound3-green-stroke: #213626;
785
+ --colors-likec4-compound3-indigo-fill: #2b2dac;
786
+ --colors-likec4-compound3-indigo-stroke: #312b91;
787
+ --colors-likec4-compound3-muted-fill: #424a54;
788
+ --colors-likec4-compound3-muted-stroke: #30363f;
789
+ --colors-likec4-compound3-primary-fill: #21519f;
790
+ --colors-likec4-compound3-primary-stroke: #224289;
791
+ --colors-likec4-compound3-red-fill: #62372e;
792
+ --colors-likec4-compound3-red-stroke: #4c2a24;
793
+ --colors-likec4-compound3-secondary-fill: #134e6c;
794
+ --colors-likec4-compound3-secondary-stroke: #103e57;
795
+ --colors-likec4-compound3-sky-fill: #134e6c;
796
+ --colors-likec4-compound3-sky-stroke: #103e57;
797
+ --colors-likec4-compound4-amber-fill: #533624;
798
+ --colors-likec4-compound4-amber-stroke: #402a1a;
799
+ --colors-likec4-compound4-blue-fill: #234c8e;
800
+ --colors-likec4-compound4-blue-stroke: #243f7a;
801
+ --colors-likec4-compound4-gray-fill: #434343;
802
+ --colors-likec4-compound4-gray-stroke: #303030;
803
+ --colors-likec4-compound4-slate-fill: #3e444d;
804
+ --colors-likec4-compound4-slate-stroke: #2d323a;
805
+ --colors-likec4-compound4-green-fill: #2d4932;
806
+ --colors-likec4-compound4-green-stroke: #1f3123;
807
+ --colors-likec4-compound4-indigo-fill: #2c2f99;
808
+ --colors-likec4-compound4-indigo-stroke: #302c82;
809
+ --colors-likec4-compound4-muted-fill: #3e444d;
810
+ --colors-likec4-compound4-muted-stroke: #2d323a;
811
+ --colors-likec4-compound4-primary-fill: #234c8e;
812
+ --colors-likec4-compound4-primary-stroke: #243f7a;
813
+ --colors-likec4-compound4-red-fill: #58342c;
814
+ --colors-likec4-compound4-red-stroke: #442823;
815
+ --colors-likec4-compound4-secondary-fill: #154660;
816
+ --colors-likec4-compound4-secondary-stroke: #11384e;
817
+ --colors-likec4-compound4-sky-fill: #154660;
818
+ --colors-likec4-compound4-sky-stroke: #11384e;
819
+ --colors-likec4-compound5-amber-fill: #493223;
820
+ --colors-likec4-compound5-amber-stroke: #38261a;
821
+ --colors-likec4-compound5-blue-fill: #25467d;
822
+ --colors-likec4-compound5-blue-stroke: #243b6c;
823
+ --colors-likec4-compound5-gray-fill: #3d3d3d;
824
+ --colors-likec4-compound5-gray-stroke: #2b2b2b;
825
+ --colors-likec4-compound5-slate-fill: #393e46;
826
+ --colors-likec4-compound5-slate-stroke: #292e34;
827
+ --colors-likec4-compound5-green-fill: #2b422f;
828
+ --colors-likec4-compound5-green-stroke: #1d2c21;
829
+ --colors-likec4-compound5-indigo-fill: #2d2f87;
830
+ --colors-likec4-compound5-indigo-stroke: #2f2b73;
831
+ --colors-likec4-compound5-muted-fill: #393e46;
832
+ --colors-likec4-compound5-muted-stroke: #292e34;
833
+ --colors-likec4-compound5-primary-fill: #25467d;
834
+ --colors-likec4-compound5-primary-stroke: #243b6c;
835
+ --colors-likec4-compound5-red-fill: #4f312a;
836
+ --colors-likec4-compound5-red-stroke: #3d2521;
837
+ --colors-likec4-compound5-secondary-fill: #163f55;
838
+ --colors-likec4-compound5-secondary-stroke: #123345;
839
+ --colors-likec4-compound5-sky-fill: #163f55;
840
+ --colors-likec4-compound5-sky-stroke: #123345;
841
+ --colors-likec4-mix-color: white
842
+ }
843
+
844
+ @keyframes indicatorStrokeOpacity {
845
+ 0% {
846
+ stroke-opacity: 0.8;
847
+ }
848
+
849
+ 100% {
850
+ stroke-opacity: 0.4;
851
+ }
852
+ }
853
+
854
+ @keyframes xyedgeAnimated {
855
+ 0% {
856
+ stroke-dashoffset: 46;
857
+ }
858
+
859
+ 100% {
860
+ stroke-dashoffset: 10;
861
+ }
862
+ }
863
+ }
864
+
865
+ @layer recipes{
866
+ @layer _base{
867
+
868
+ .action-btn {
869
+ pointer-events: all;
870
+ cursor: pointer;
871
+ color: var(--actionbtn-color);
872
+ opacity: 0.75;
873
+ --actionbtn-color: var(--colors-likec4-palette-lo-contrast);
874
+ --actionbtn-color-hovered: var(--colors-likec4-palette-lo-contrast);
875
+ --actionbtn-color-hovered-btn: var(--colors-likec4-palette-hi-contrast);
876
+ --actionbtn-bg-idle: color-mix(in srgb , var(--colors-likec4-palette-fill), transparent 99%);
877
+ --actionbtn-bg-hovered: color-mix(in srgb , var(--colors-likec4-palette-fill) 65%, var(--colors-likec4-palette-stroke));
878
+ --actionbtn-bg-hovered-btn: color-mix(in srgb , var(--colors-likec4-palette-fill) 50%, var(--colors-likec4-palette-stroke));
879
+ --ai-bg: var(--actionbtn-bg-idle);
880
+ background: var(--ai-bg);
881
+ }
882
+
883
+ :where([data-likec4-hovered="true"]) .action-btn {
884
+ opacity: 1;
885
+ color: var(--actionbtn-color-hovered);
886
+ --ai-bg: var(--actionbtn-bg-hovered);
887
+ }
888
+
889
+ :is(.likec4-root[data-likec4-diagram-panning]) .action-btn {
890
+ display: none;
891
+ }
892
+
893
+ :where([data-likec4-zoom-small]) .action-btn {
894
+ display: none;
895
+ }
896
+
897
+ .action-btn:is(:hover, [data-hover]) {
898
+ color: var(--actionbtn-color-hovered-btn);
899
+ --ai-bg: var(--actionbtn-bg-hovered-btn);
900
+ }
901
+ }
902
+
903
+ .action-btn--size_md {
904
+ --ai-size: var(--ai-size-md);
905
+ }
906
+
907
+ .action-btn--radius_md {
908
+ --ai-radius: var(--mantine-radius-md);
909
+ }
910
+
911
+ .action-btn--variant_filled {
912
+ box-shadow: 1px 1px 3px 0px transparent;
913
+ }
914
+
915
+ :where([data-likec4-hovered="true"]) .action-btn--variant_filled {
916
+ box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
917
+ }
918
+
919
+ .likec4-root:is([data-likec4-reduced-graphics]) .action-btn--variant_filled {
920
+ box-shadow: none;
921
+ }
922
+
923
+ :where([data-likec4-hovered="true"]) .whenHovered\:action-btn--size_md {
924
+ --ai-size: var(--ai-size-md);
925
+ }
926
+
927
+ .hover\:action-btn--size_md:is(:hover, [data-hover]) {
928
+ --ai-size: var(--ai-size-md);
929
+ }
930
+
931
+ :where([data-likec4-hovered="true"]) .whenHovered\:action-btn--radius_md {
932
+ --ai-radius: var(--mantine-radius-md);
933
+ }
934
+
935
+ .hover\:action-btn--radius_md:is(:hover, [data-hover]) {
936
+ --ai-radius: var(--mantine-radius-md);
937
+ }
938
+
939
+ .action-btn--variant_transparent {
940
+ --actionbtn-bg-hovered: var(--actionbtn-bg-idle);
941
+ }
942
+
943
+ :where([data-likec4-hovered="true"]) .whenHovered\:action-btn--variant_transparent {
944
+ --actionbtn-bg-hovered: var(--actionbtn-bg-idle);
945
+ }
946
+
947
+ .hover\:action-btn--variant_transparent:is(:hover, [data-hover]) {
948
+ --actionbtn-bg-hovered: var(--actionbtn-bg-idle);
949
+ }
950
+
951
+ :where([data-likec4-hovered="true"]) .whenHovered\:action-btn--variant_filled {
952
+ box-shadow: 1px 1px 3px 0px transparent;
953
+ }
954
+
955
+ :where([data-likec4-hovered="true"]) :where([data-likec4-hovered="true"]) .whenHovered\:action-btn--variant_filled {
956
+ box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
957
+ }
958
+
959
+ .likec4-root:is([data-likec4-reduced-graphics]) :where([data-likec4-hovered="true"]) .whenHovered\:action-btn--variant_filled {
960
+ box-shadow: none;
961
+ }
962
+
963
+ .hover\:action-btn--variant_filled:is(:hover, [data-hover]) {
964
+ box-shadow: 1px 1px 3px 0px transparent;
965
+ }
966
+
967
+ :where([data-likec4-hovered="true"]) .hover\:action-btn--variant_filled:is(:hover, [data-hover]) {
968
+ box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
969
+ }
970
+
971
+ .likec4-root:is([data-likec4-reduced-graphics]) .hover\:action-btn--variant_filled:is(:hover, [data-hover]) {
972
+ box-shadow: none;
973
+ }
974
+ }
975
+
976
+ @layer utilities{
977
+
978
+ .c_likec4\.palette\.hiContrast {
979
+ color: var(--colors-likec4-palette-hi-contrast);
980
+ }
981
+
982
+ .c_likec4\.palette\.loContrast {
983
+ color: var(--colors-likec4-palette-lo-contrast);
984
+ }
985
+
986
+ .likec4-palette_amber {
987
+ --likec4-palette: 'likec4.amber';
988
+ --colors-likec4-palette-fill: var(--colors-likec4-amber-element-fill);
989
+ --colors-likec4-palette-stroke: var(--colors-likec4-amber-element-stroke);
990
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-amber-element-hi-contrast);
991
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-amber-element-lo-contrast);
992
+ }
993
+
994
+ .likec4-palette_blue {
995
+ --likec4-palette: 'likec4.blue';
996
+ --colors-likec4-palette-fill: var(--colors-likec4-blue-element-fill);
997
+ --colors-likec4-palette-stroke: var(--colors-likec4-blue-element-stroke);
998
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-blue-element-hi-contrast);
999
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-blue-element-lo-contrast);
1000
+ }
1001
+
1002
+ .likec4-palette_gray {
1003
+ --likec4-palette: 'likec4.gray';
1004
+ --colors-likec4-palette-fill: var(--colors-likec4-gray-element-fill);
1005
+ --colors-likec4-palette-stroke: var(--colors-likec4-gray-element-stroke);
1006
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-gray-element-hi-contrast);
1007
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-gray-element-lo-contrast);
1008
+ }
1009
+
1010
+ .likec4-palette_slate {
1011
+ --likec4-palette: 'likec4.slate';
1012
+ --colors-likec4-palette-fill: var(--colors-likec4-slate-element-fill);
1013
+ --colors-likec4-palette-stroke: var(--colors-likec4-slate-element-stroke);
1014
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-slate-element-hi-contrast);
1015
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-slate-element-lo-contrast);
1016
+ }
1017
+
1018
+ .likec4-palette_green {
1019
+ --likec4-palette: 'likec4.green';
1020
+ --colors-likec4-palette-fill: var(--colors-likec4-green-element-fill);
1021
+ --colors-likec4-palette-stroke: var(--colors-likec4-green-element-stroke);
1022
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-green-element-hi-contrast);
1023
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-green-element-lo-contrast);
1024
+ }
1025
+
1026
+ .likec4-palette_indigo {
1027
+ --likec4-palette: 'likec4.indigo';
1028
+ --colors-likec4-palette-fill: var(--colors-likec4-indigo-element-fill);
1029
+ --colors-likec4-palette-stroke: var(--colors-likec4-indigo-element-stroke);
1030
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-indigo-element-hi-contrast);
1031
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-indigo-element-lo-contrast);
1032
+ }
1033
+
1034
+ .likec4-palette_muted {
1035
+ --likec4-palette: 'likec4.muted';
1036
+ --colors-likec4-palette-fill: var(--colors-likec4-muted-element-fill);
1037
+ --colors-likec4-palette-stroke: var(--colors-likec4-muted-element-stroke);
1038
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-muted-element-hi-contrast);
1039
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-muted-element-lo-contrast);
1040
+ }
1041
+
1042
+ .likec4-palette_primary {
1043
+ --likec4-palette: 'likec4.primary';
1044
+ --colors-likec4-palette-fill: var(--colors-likec4-primary-element-fill);
1045
+ --colors-likec4-palette-stroke: var(--colors-likec4-primary-element-stroke);
1046
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-primary-element-hi-contrast);
1047
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-primary-element-lo-contrast);
1048
+ }
1049
+
1050
+ .likec4-palette_red {
1051
+ --likec4-palette: 'likec4.red';
1052
+ --colors-likec4-palette-fill: var(--colors-likec4-red-element-fill);
1053
+ --colors-likec4-palette-stroke: var(--colors-likec4-red-element-stroke);
1054
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-red-element-hi-contrast);
1055
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-red-element-lo-contrast);
1056
+ }
1057
+
1058
+ .likec4-palette_secondary {
1059
+ --likec4-palette: 'likec4.secondary';
1060
+ --colors-likec4-palette-fill: var(--colors-likec4-secondary-element-fill);
1061
+ --colors-likec4-palette-stroke: var(--colors-likec4-secondary-element-stroke);
1062
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-secondary-element-hi-contrast);
1063
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-secondary-element-lo-contrast);
1064
+ }
1065
+
1066
+ .likec4-palette_sky {
1067
+ --likec4-palette: 'likec4.sky';
1068
+ --colors-likec4-palette-fill: var(--colors-likec4-sky-element-fill);
1069
+ --colors-likec4-palette-stroke: var(--colors-likec4-sky-element-stroke);
1070
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-sky-element-hi-contrast);
1071
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-sky-element-lo-contrast);
1072
+ }
1073
+
1074
+ .likec4-palette_amber\.1 {
1075
+ --likec4-palette: 'likec4.compound1.amber';
1076
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-amber-hi-contrast);
1077
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-amber-lo-contrast);
1078
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-amber-fill);
1079
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-amber-stroke);
1080
+ }
1081
+
1082
+ .likec4-palette_amber\.2 {
1083
+ --likec4-palette: 'likec4.compound2.amber';
1084
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-amber-hi-contrast);
1085
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-amber-lo-contrast);
1086
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-amber-fill);
1087
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-amber-stroke);
1088
+ }
1089
+
1090
+ .likec4-palette_amber\.3 {
1091
+ --likec4-palette: 'likec4.compound3.amber';
1092
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-amber-hi-contrast);
1093
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-amber-lo-contrast);
1094
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-amber-fill);
1095
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-amber-stroke);
1096
+ }
1097
+
1098
+ .likec4-palette_amber\.4 {
1099
+ --likec4-palette: 'likec4.compound4.amber';
1100
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-amber-hi-contrast);
1101
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-amber-lo-contrast);
1102
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-amber-fill);
1103
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-amber-stroke);
1104
+ }
1105
+
1106
+ .likec4-palette_amber\.5 {
1107
+ --likec4-palette: 'likec4.compound5.amber';
1108
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-amber-hi-contrast);
1109
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-amber-lo-contrast);
1110
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-amber-fill);
1111
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-amber-stroke);
1112
+ }
1113
+
1114
+ .likec4-palette_blue\.1 {
1115
+ --likec4-palette: 'likec4.compound1.blue';
1116
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-blue-hi-contrast);
1117
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-blue-lo-contrast);
1118
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-blue-fill);
1119
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-blue-stroke);
1120
+ }
1121
+
1122
+ .likec4-palette_blue\.2 {
1123
+ --likec4-palette: 'likec4.compound2.blue';
1124
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-blue-hi-contrast);
1125
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-blue-lo-contrast);
1126
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-blue-fill);
1127
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-blue-stroke);
1128
+ }
1129
+
1130
+ .likec4-palette_blue\.3 {
1131
+ --likec4-palette: 'likec4.compound3.blue';
1132
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-blue-hi-contrast);
1133
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-blue-lo-contrast);
1134
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-blue-fill);
1135
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-blue-stroke);
1136
+ }
1137
+
1138
+ .likec4-palette_blue\.4 {
1139
+ --likec4-palette: 'likec4.compound4.blue';
1140
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-blue-hi-contrast);
1141
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-blue-lo-contrast);
1142
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-blue-fill);
1143
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-blue-stroke);
1144
+ }
1145
+
1146
+ .likec4-palette_blue\.5 {
1147
+ --likec4-palette: 'likec4.compound5.blue';
1148
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-blue-hi-contrast);
1149
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-blue-lo-contrast);
1150
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-blue-fill);
1151
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-blue-stroke);
1152
+ }
1153
+
1154
+ .likec4-palette_gray\.1 {
1155
+ --likec4-palette: 'likec4.compound1.gray';
1156
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-gray-hi-contrast);
1157
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-gray-lo-contrast);
1158
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-gray-fill);
1159
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-gray-stroke);
1160
+ }
1161
+
1162
+ .likec4-palette_gray\.2 {
1163
+ --likec4-palette: 'likec4.compound2.gray';
1164
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-gray-hi-contrast);
1165
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-gray-lo-contrast);
1166
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-gray-fill);
1167
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-gray-stroke);
1168
+ }
1169
+
1170
+ .likec4-palette_gray\.3 {
1171
+ --likec4-palette: 'likec4.compound3.gray';
1172
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-gray-hi-contrast);
1173
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-gray-lo-contrast);
1174
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-gray-fill);
1175
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-gray-stroke);
1176
+ }
1177
+
1178
+ .likec4-palette_gray\.4 {
1179
+ --likec4-palette: 'likec4.compound4.gray';
1180
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-gray-hi-contrast);
1181
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-gray-lo-contrast);
1182
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-gray-fill);
1183
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-gray-stroke);
1184
+ }
1185
+
1186
+ .likec4-palette_gray\.5 {
1187
+ --likec4-palette: 'likec4.compound5.gray';
1188
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-gray-hi-contrast);
1189
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-gray-lo-contrast);
1190
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-gray-fill);
1191
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-gray-stroke);
1192
+ }
1193
+
1194
+ .likec4-palette_slate\.1 {
1195
+ --likec4-palette: 'likec4.compound1.slate';
1196
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-slate-hi-contrast);
1197
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-slate-lo-contrast);
1198
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-slate-fill);
1199
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-slate-stroke);
1200
+ }
1201
+
1202
+ .likec4-palette_slate\.2 {
1203
+ --likec4-palette: 'likec4.compound2.slate';
1204
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-slate-hi-contrast);
1205
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-slate-lo-contrast);
1206
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-slate-fill);
1207
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-slate-stroke);
1208
+ }
1209
+
1210
+ .likec4-palette_slate\.3 {
1211
+ --likec4-palette: 'likec4.compound3.slate';
1212
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-slate-hi-contrast);
1213
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-slate-lo-contrast);
1214
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-slate-fill);
1215
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-slate-stroke);
1216
+ }
1217
+
1218
+ .likec4-palette_slate\.4 {
1219
+ --likec4-palette: 'likec4.compound4.slate';
1220
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-slate-hi-contrast);
1221
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-slate-lo-contrast);
1222
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-slate-fill);
1223
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-slate-stroke);
1224
+ }
1225
+
1226
+ .likec4-palette_slate\.5 {
1227
+ --likec4-palette: 'likec4.compound5.slate';
1228
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-slate-hi-contrast);
1229
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-slate-lo-contrast);
1230
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-slate-fill);
1231
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-slate-stroke);
1232
+ }
1233
+
1234
+ .likec4-palette_green\.1 {
1235
+ --likec4-palette: 'likec4.compound1.green';
1236
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-green-hi-contrast);
1237
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-green-lo-contrast);
1238
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-green-fill);
1239
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-green-stroke);
1240
+ }
1241
+
1242
+ .likec4-palette_green\.2 {
1243
+ --likec4-palette: 'likec4.compound2.green';
1244
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-green-hi-contrast);
1245
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-green-lo-contrast);
1246
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-green-fill);
1247
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-green-stroke);
1248
+ }
1249
+
1250
+ .likec4-palette_green\.3 {
1251
+ --likec4-palette: 'likec4.compound3.green';
1252
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-green-hi-contrast);
1253
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-green-lo-contrast);
1254
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-green-fill);
1255
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-green-stroke);
1256
+ }
1257
+
1258
+ .likec4-palette_green\.4 {
1259
+ --likec4-palette: 'likec4.compound4.green';
1260
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-green-hi-contrast);
1261
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-green-lo-contrast);
1262
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-green-fill);
1263
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-green-stroke);
1264
+ }
1265
+
1266
+ .likec4-palette_green\.5 {
1267
+ --likec4-palette: 'likec4.compound5.green';
1268
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-green-hi-contrast);
1269
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-green-lo-contrast);
1270
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-green-fill);
1271
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-green-stroke);
1272
+ }
1273
+
1274
+ .likec4-palette_indigo\.1 {
1275
+ --likec4-palette: 'likec4.compound1.indigo';
1276
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-indigo-hi-contrast);
1277
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-indigo-lo-contrast);
1278
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-indigo-fill);
1279
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-indigo-stroke);
1280
+ }
1281
+
1282
+ .likec4-palette_indigo\.2 {
1283
+ --likec4-palette: 'likec4.compound2.indigo';
1284
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-indigo-hi-contrast);
1285
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-indigo-lo-contrast);
1286
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-indigo-fill);
1287
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-indigo-stroke);
1288
+ }
1289
+
1290
+ .likec4-palette_indigo\.3 {
1291
+ --likec4-palette: 'likec4.compound3.indigo';
1292
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-indigo-hi-contrast);
1293
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-indigo-lo-contrast);
1294
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-indigo-fill);
1295
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-indigo-stroke);
1296
+ }
1297
+
1298
+ .likec4-palette_indigo\.4 {
1299
+ --likec4-palette: 'likec4.compound4.indigo';
1300
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-indigo-hi-contrast);
1301
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-indigo-lo-contrast);
1302
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-indigo-fill);
1303
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-indigo-stroke);
1304
+ }
1305
+
1306
+ .likec4-palette_indigo\.5 {
1307
+ --likec4-palette: 'likec4.compound5.indigo';
1308
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-indigo-hi-contrast);
1309
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-indigo-lo-contrast);
1310
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-indigo-fill);
1311
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-indigo-stroke);
1312
+ }
1313
+
1314
+ .likec4-palette_muted\.1 {
1315
+ --likec4-palette: 'likec4.compound1.muted';
1316
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-muted-hi-contrast);
1317
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-muted-lo-contrast);
1318
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-muted-fill);
1319
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-muted-stroke);
1320
+ }
1321
+
1322
+ .likec4-palette_muted\.2 {
1323
+ --likec4-palette: 'likec4.compound2.muted';
1324
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-muted-hi-contrast);
1325
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-muted-lo-contrast);
1326
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-muted-fill);
1327
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-muted-stroke);
1328
+ }
1329
+
1330
+ .likec4-palette_muted\.3 {
1331
+ --likec4-palette: 'likec4.compound3.muted';
1332
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-muted-hi-contrast);
1333
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-muted-lo-contrast);
1334
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-muted-fill);
1335
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-muted-stroke);
1336
+ }
1337
+
1338
+ .likec4-palette_muted\.4 {
1339
+ --likec4-palette: 'likec4.compound4.muted';
1340
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-muted-hi-contrast);
1341
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-muted-lo-contrast);
1342
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-muted-fill);
1343
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-muted-stroke);
1344
+ }
1345
+
1346
+ .likec4-palette_muted\.5 {
1347
+ --likec4-palette: 'likec4.compound5.muted';
1348
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-muted-hi-contrast);
1349
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-muted-lo-contrast);
1350
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-muted-fill);
1351
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-muted-stroke);
1352
+ }
1353
+
1354
+ .likec4-palette_primary\.1 {
1355
+ --likec4-palette: 'likec4.compound1.primary';
1356
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-primary-hi-contrast);
1357
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-primary-lo-contrast);
1358
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-primary-fill);
1359
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-primary-stroke);
1360
+ }
1361
+
1362
+ .likec4-palette_primary\.2 {
1363
+ --likec4-palette: 'likec4.compound2.primary';
1364
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-primary-hi-contrast);
1365
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-primary-lo-contrast);
1366
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-primary-fill);
1367
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-primary-stroke);
1368
+ }
1369
+
1370
+ .likec4-palette_primary\.3 {
1371
+ --likec4-palette: 'likec4.compound3.primary';
1372
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-primary-hi-contrast);
1373
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-primary-lo-contrast);
1374
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-primary-fill);
1375
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-primary-stroke);
1376
+ }
1377
+
1378
+ .likec4-palette_primary\.4 {
1379
+ --likec4-palette: 'likec4.compound4.primary';
1380
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-primary-hi-contrast);
1381
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-primary-lo-contrast);
1382
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-primary-fill);
1383
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-primary-stroke);
1384
+ }
1385
+
1386
+ .likec4-palette_primary\.5 {
1387
+ --likec4-palette: 'likec4.compound5.primary';
1388
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-primary-hi-contrast);
1389
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-primary-lo-contrast);
1390
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-primary-fill);
1391
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-primary-stroke);
1392
+ }
1393
+
1394
+ .likec4-palette_red\.1 {
1395
+ --likec4-palette: 'likec4.compound1.red';
1396
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-red-hi-contrast);
1397
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-red-lo-contrast);
1398
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-red-fill);
1399
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-red-stroke);
1400
+ }
1401
+
1402
+ .likec4-palette_red\.2 {
1403
+ --likec4-palette: 'likec4.compound2.red';
1404
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-red-hi-contrast);
1405
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-red-lo-contrast);
1406
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-red-fill);
1407
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-red-stroke);
1408
+ }
1409
+
1410
+ .likec4-palette_red\.3 {
1411
+ --likec4-palette: 'likec4.compound3.red';
1412
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-red-hi-contrast);
1413
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-red-lo-contrast);
1414
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-red-fill);
1415
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-red-stroke);
1416
+ }
1417
+
1418
+ .likec4-palette_red\.4 {
1419
+ --likec4-palette: 'likec4.compound4.red';
1420
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-red-hi-contrast);
1421
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-red-lo-contrast);
1422
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-red-fill);
1423
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-red-stroke);
1424
+ }
1425
+
1426
+ .likec4-palette_red\.5 {
1427
+ --likec4-palette: 'likec4.compound5.red';
1428
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-red-hi-contrast);
1429
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-red-lo-contrast);
1430
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-red-fill);
1431
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-red-stroke);
1432
+ }
1433
+
1434
+ .likec4-palette_secondary\.1 {
1435
+ --likec4-palette: 'likec4.compound1.secondary';
1436
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-secondary-hi-contrast);
1437
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-secondary-lo-contrast);
1438
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-secondary-fill);
1439
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-secondary-stroke);
1440
+ }
1441
+
1442
+ .likec4-palette_secondary\.2 {
1443
+ --likec4-palette: 'likec4.compound2.secondary';
1444
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-secondary-hi-contrast);
1445
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-secondary-lo-contrast);
1446
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-secondary-fill);
1447
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-secondary-stroke);
1448
+ }
1449
+
1450
+ .likec4-palette_secondary\.3 {
1451
+ --likec4-palette: 'likec4.compound3.secondary';
1452
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-secondary-hi-contrast);
1453
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-secondary-lo-contrast);
1454
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-secondary-fill);
1455
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-secondary-stroke);
1456
+ }
1457
+
1458
+ .likec4-palette_secondary\.4 {
1459
+ --likec4-palette: 'likec4.compound4.secondary';
1460
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-secondary-hi-contrast);
1461
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-secondary-lo-contrast);
1462
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-secondary-fill);
1463
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-secondary-stroke);
1464
+ }
1465
+
1466
+ .likec4-palette_secondary\.5 {
1467
+ --likec4-palette: 'likec4.compound5.secondary';
1468
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-secondary-hi-contrast);
1469
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-secondary-lo-contrast);
1470
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-secondary-fill);
1471
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-secondary-stroke);
1472
+ }
1473
+
1474
+ .likec4-palette_sky\.1 {
1475
+ --likec4-palette: 'likec4.compound1.sky';
1476
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound1-sky-hi-contrast);
1477
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound1-sky-lo-contrast);
1478
+ --colors-likec4-palette-fill: var(--colors-likec4-compound1-sky-fill);
1479
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound1-sky-stroke);
1480
+ }
1481
+
1482
+ .likec4-palette_sky\.2 {
1483
+ --likec4-palette: 'likec4.compound2.sky';
1484
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound2-sky-hi-contrast);
1485
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound2-sky-lo-contrast);
1486
+ --colors-likec4-palette-fill: var(--colors-likec4-compound2-sky-fill);
1487
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound2-sky-stroke);
1488
+ }
1489
+
1490
+ .likec4-palette_sky\.3 {
1491
+ --likec4-palette: 'likec4.compound3.sky';
1492
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound3-sky-hi-contrast);
1493
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound3-sky-lo-contrast);
1494
+ --colors-likec4-palette-fill: var(--colors-likec4-compound3-sky-fill);
1495
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound3-sky-stroke);
1496
+ }
1497
+
1498
+ .likec4-palette_sky\.4 {
1499
+ --likec4-palette: 'likec4.compound4.sky';
1500
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound4-sky-hi-contrast);
1501
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound4-sky-lo-contrast);
1502
+ --colors-likec4-palette-fill: var(--colors-likec4-compound4-sky-fill);
1503
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound4-sky-stroke);
1504
+ }
1505
+
1506
+ .likec4-palette_sky\.5 {
1507
+ --likec4-palette: 'likec4.compound5.sky';
1508
+ --colors-likec4-palette-hi-contrast: var(--colors-likec4-compound5-sky-hi-contrast);
1509
+ --colors-likec4-palette-lo-contrast: var(--colors-likec4-compound5-sky-lo-contrast);
1510
+ --colors-likec4-palette-fill: var(--colors-likec4-compound5-sky-fill);
1511
+ --colors-likec4-palette-stroke: var(--colors-likec4-compound5-sky-stroke);
1512
+ }
1513
+
1514
+ .likec4-relation-color_amber {
1515
+ --likec4-palette: 'likec4.amber';
1516
+ --colors-likec4-relation-stroke: var(--colors-likec4-amber-relation-stroke);
1517
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-amber-relation-stroke-selected);
1518
+ --colors-likec4-relation-label: var(--colors-likec4-amber-relation-label);
1519
+ --colors-likec4-relation-label-bg: var(--colors-likec4-amber-relation-label-bg);
1520
+ }
1521
+
1522
+ .likec4-relation-color_blue {
1523
+ --likec4-palette: 'likec4.blue';
1524
+ --colors-likec4-relation-stroke: var(--colors-likec4-blue-relation-stroke);
1525
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-blue-relation-stroke-selected);
1526
+ --colors-likec4-relation-label: var(--colors-likec4-blue-relation-label);
1527
+ --colors-likec4-relation-label-bg: var(--colors-likec4-blue-relation-label-bg);
1528
+ }
1529
+
1530
+ .likec4-relation-color_gray {
1531
+ --likec4-palette: 'likec4.gray';
1532
+ --colors-likec4-relation-stroke: var(--colors-likec4-gray-relation-stroke);
1533
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-gray-relation-stroke-selected);
1534
+ --colors-likec4-relation-label: var(--colors-likec4-gray-relation-label);
1535
+ --colors-likec4-relation-label-bg: var(--colors-likec4-gray-relation-label-bg);
1536
+ }
1537
+
1538
+ .likec4-relation-color_slate {
1539
+ --likec4-palette: 'likec4.slate';
1540
+ --colors-likec4-relation-stroke: var(--colors-likec4-slate-relation-stroke);
1541
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-slate-relation-stroke-selected);
1542
+ --colors-likec4-relation-label: var(--colors-likec4-slate-relation-label);
1543
+ --colors-likec4-relation-label-bg: var(--colors-likec4-slate-relation-label-bg);
1544
+ }
1545
+
1546
+ .likec4-relation-color_green {
1547
+ --likec4-palette: 'likec4.green';
1548
+ --colors-likec4-relation-stroke: var(--colors-likec4-green-relation-stroke);
1549
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-green-relation-stroke-selected);
1550
+ --colors-likec4-relation-label: var(--colors-likec4-green-relation-label);
1551
+ --colors-likec4-relation-label-bg: var(--colors-likec4-green-relation-label-bg);
1552
+ }
1553
+
1554
+ .likec4-relation-color_indigo {
1555
+ --likec4-palette: 'likec4.indigo';
1556
+ --colors-likec4-relation-stroke: var(--colors-likec4-indigo-relation-stroke);
1557
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-indigo-relation-stroke-selected);
1558
+ --colors-likec4-relation-label: var(--colors-likec4-indigo-relation-label);
1559
+ --colors-likec4-relation-label-bg: var(--colors-likec4-indigo-relation-label-bg);
1560
+ }
1561
+
1562
+ .likec4-relation-color_muted {
1563
+ --likec4-palette: 'likec4.muted';
1564
+ --colors-likec4-relation-stroke: var(--colors-likec4-muted-relation-stroke);
1565
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-muted-relation-stroke-selected);
1566
+ --colors-likec4-relation-label: var(--colors-likec4-muted-relation-label);
1567
+ --colors-likec4-relation-label-bg: var(--colors-likec4-muted-relation-label-bg);
1568
+ }
1569
+
1570
+ .likec4-relation-color_primary {
1571
+ --likec4-palette: 'likec4.primary';
1572
+ --colors-likec4-relation-stroke: var(--colors-likec4-primary-relation-stroke);
1573
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-primary-relation-stroke-selected);
1574
+ --colors-likec4-relation-label: var(--colors-likec4-primary-relation-label);
1575
+ --colors-likec4-relation-label-bg: var(--colors-likec4-primary-relation-label-bg);
1576
+ }
1577
+
1578
+ .likec4-relation-color_red {
1579
+ --likec4-palette: 'likec4.red';
1580
+ --colors-likec4-relation-stroke: var(--colors-likec4-red-relation-stroke);
1581
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-red-relation-stroke-selected);
1582
+ --colors-likec4-relation-label: var(--colors-likec4-red-relation-label);
1583
+ --colors-likec4-relation-label-bg: var(--colors-likec4-red-relation-label-bg);
1584
+ }
1585
+
1586
+ .likec4-relation-color_secondary {
1587
+ --likec4-palette: 'likec4.secondary';
1588
+ --colors-likec4-relation-stroke: var(--colors-likec4-secondary-relation-stroke);
1589
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-secondary-relation-stroke-selected);
1590
+ --colors-likec4-relation-label: var(--colors-likec4-secondary-relation-label);
1591
+ --colors-likec4-relation-label-bg: var(--colors-likec4-secondary-relation-label-bg);
1592
+ }
1593
+
1594
+ .likec4-relation-color_sky {
1595
+ --likec4-palette: 'likec4.sky';
1596
+ --colors-likec4-relation-stroke: var(--colors-likec4-sky-relation-stroke);
1597
+ --colors-likec4-relation-stroke-selected: var(--colors-likec4-sky-relation-stroke-selected);
1598
+ --colors-likec4-relation-label: var(--colors-likec4-sky-relation-label);
1599
+ --colors-likec4-relation-label-bg: var(--colors-likec4-sky-relation-label-bg);
1600
+ }
1601
+ }