@botfabrik/engine-webclient 4.55.0 → 4.56.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.
package/README.md CHANGED
@@ -231,16 +231,33 @@ Verzeichnis 'public/\${name-meines-webclients}/' abgelegt werden. Auf gleiche Ar
231
231
 
232
232
  ```css
233
233
  :root {
234
+ --background-color: #ebebeb;
234
235
  --brand-primary-color: #008fd7;
235
- --brand-secondary-color: white;
236
+ --brand-secondary-color: #fff;
237
+ --danger-color: #ee263d;
238
+ --scrollbar-thumb-color: #adadad;
239
+
240
+ --avatar-size: 2rem;
241
+
242
+ --bubble-padding: 0.9em 1.3em;
243
+ --bubble-margin-small: 3px;
244
+ --bubble-margin-large: 1.2rem;
245
+ --bubble-radius-large: 20px;
246
+ --bubble-radius-small: 4px;
236
247
 
237
248
  --bot-bubble-background-color: white;
238
249
  --bot-bubble-text-color: rgb(46, 46, 46);
250
+ --bot-bubble-top-left-radius: var(--bubble-radius-small);
251
+ --bot-bubble-top-right-radius: var(--bubble-radius-small);
252
+ --bot-bubble-bottom-right-radius: var(--bubble-radius-small);
253
+ --bot-bubble-bottom-left-radius: var(--bubble-radius-small);
239
254
 
240
255
  --guest-bubble-background-color: #008fd7;
241
256
  --guest-bubble-text-color: white;
242
-
243
- --danger-color: #ee263d;
257
+ --guest-bubble-top-left-radius: var(--bubble-radius-small);
258
+ --guest-bubble-top-right-radius: var(--bubble-radius-small);
259
+ --guest-bubble-bottom-right-radius: var(--bubble-radius-small);
260
+ --guest-bubble-bottom-left-radius: var(--bubble-radius-small);
244
261
  }
245
262
  ```
246
263