@livelayer/react 0.9.4 → 0.9.5

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/dist/styles.css CHANGED
@@ -1007,17 +1007,24 @@
1007
1007
  }
1008
1008
 
1009
1009
  /* Captions affordance for deaf-friendly UX: when the latest transcript
1010
- line is the AGENT's spoken output, tint the pill with a soft orange
1011
- glow signalling "this text is coming from Live Layer." The user's STT
1012
- keeps default styling (no glow) so the two voices read distinctly.
1013
- Hue is the warm side of the brand; opacity is tuned so the text on
1014
- the dark blurred backdrop stays readable. */
1010
+ line is the AGENT's spoken output, tint the pill ORANGE so it reads
1011
+ unambiguously as "this text is coming from Live Layer." The user's
1012
+ STT pill keeps default dark styling so the two voices contrast
1013
+ immediately at a glance. Previous opacity (0.18) was so faint
1014
+ testers couldn't tell the agent line was differentiated at all —
1015
+ now the pill is brand-orange, with a saturated glow + warm white
1016
+ text on the colored background. */
1015
1017
  .ll-expanded__transcript--agent {
1016
- background: rgba(255, 139, 61, 0.18);
1017
- border-color: rgba(255, 175, 110, 0.45);
1018
+ background: rgba(224, 101, 64, 0.85);
1019
+ border-color: rgba(255, 175, 110, 0.6);
1018
1020
  box-shadow:
1019
- 0 0 18px rgba(255, 139, 61, 0.3),
1020
- inset 0 0 0 1px rgba(255, 175, 110, 0.2);
1021
+ 0 0 24px rgba(224, 101, 64, 0.4),
1022
+ inset 0 0 0 1px rgba(255, 200, 160, 0.25);
1023
+ }
1024
+
1025
+ .ll-expanded__transcript--agent .ll-expanded__transcript-text {
1026
+ color: #fff;
1027
+ font-weight: 500;
1021
1028
  }
1022
1029
 
1023
1030
  @media (prefers-reduced-motion: reduce) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livelayer/react",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "LiveLayer agent widget for React — avatar video, team switching, responsive layouts, full-fidelity embed",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",