story-kit: merge 87_story_update_agent_lozenge_colour_scheme_across_panels

This commit is contained in:
Dave
2026-02-23 18:23:01 +00:00
parent 4162eb1d1b
commit ac22e9a882
6 changed files with 25 additions and 27 deletions

View File

@@ -410,7 +410,7 @@ describe("LozengeFlyProvider fly-out", () => {
// ─── Idle vs active visual distinction ────────────────────────────────────────
describe("AgentLozenge idle vs active appearance", () => {
it("running agent lozenge uses the blue active color", () => {
it("running agent lozenge uses the green active color", () => {
const items = [
{
story_id: "74_running_color",
@@ -429,8 +429,8 @@ describe("AgentLozenge idle vs active appearance", () => {
'[data-testid="slot-lozenge-74_running_color"]',
) as HTMLElement;
expect(lozenge).toBeInTheDocument();
// Blue: rgb(88, 166, 255) = #58a6ff
expect(lozenge.style.color).toBe("rgb(88, 166, 255)");
// Green: rgb(63, 185, 80) = #3fb950
expect(lozenge.style.color).toBe("rgb(63, 185, 80)");
});
it("pending agent lozenge uses the yellow pending color", () => {