
Design Systems — 2026 Week 13
This week's design systems conversation was pulled in two directions: AI's growing role in design workflows, and accessibility's non-negotiable demands. Storybook… Compiled for immediate developer deployment.


ADA Title II Update: What We Know, What We Don't, and What to Do Now

GenUI vs. Vibe Coding: Who's Designing?

Testing Font Scaling for Accessibility with Figma Variables
font-size and line-height for each text style, covering scale increments of 120%, 140%, 160%, 180%, and 200%. The workflow requires auto layout applied consistently across all frames, text styles defined for every text element, and Figma variables structured per scale percentage using simple multiplication. Designers then copy screens and swap variable collections to expose layout breakdowns caused by fixed containers or missing auto layout configuration. Design systems that already use light/dark mode variable sets apply the same switching pattern, making the process incremental rather than disruptive. Issues that cannot be resolved in design are documented and handed off to the development team for code-level fixes.
Designing for People with Low Vision

Test IDs Are an A11y Smell
data-testid attributes to locate elements in tests is a code smell that silently permits inaccessible markup to pass test suites. When a button is replaced with a clickable div, a test using data-testid continues to pass even though the element is no longer keyboard accessible and carries no semantic ARIA role. Role-based selectors from Testing Library or Playwright's built-in query API enforce semantic HTML as a side effect: if getByRole cannot find an element, neither can a screen reader or keyboard user. The author advocates structuring test queries as natural language actions — clicking the Confirm Button in the Save Dialog, filling the Email Field in the Registration Form — which ties test readability to accessible naming. Practical tips include using semantic HTML for implicit ARIA roles, associating all form controls with visible or visually-hidden labels, using Testing Playground to discover the best selector, and inspecting the browser's Accessibility tree view in DevTools.
The New Figma Workflow: Code to Design and Back
use_figma skill in Claude Code, a running React app is translated into Figma with design tokens extracted from global CSS, Figma variables created to match, and every frame built with auto layout bound to those variables. The tutorial shows token-level round-tripping: changing the background color variable in Figma immediately updates all bound frames, and introducing a new token (navbar-bg: white) registers it back into the design system. The return journey — updating Figma designs back into the codebase — required a re-prompt due to the non-deterministic nature of LLMs, and the author notes the first attempt missed the background color change and converted a removed stroke to solid black. The workflow is positioned as a foundation for AI-infused SaaS development where branding and UI/UX decisions alternate between code and Figma.
Storybook MCP for React
The New Figma Workflow: Code to Design and Back
use_figma skill in Claude Code, a running React app is translated into Figma with design tokens extracted from global CSS, Figma variables created to match, and every frame built with auto layout bound to those variables. The tutorial shows token-level round-tripping: changing the background color variable in Figma immediately updates all bound frames, and introducing a new token (navbar-bg: white) registers it back into the design system. The return journey — updating Figma designs back into the codebase — required a re-prompt due to the non-deterministic nature of LLMs, and the author notes the first attempt missed the background color change and converted a removed stroke to solid black. The workflow is positioned as a foundation for AI-infused SaaS development where branding and UI/UX decisions alternate between code and Figma.ADA Title II Update: What We Know, What We Don't, and What to Do Now
GenUI vs. Vibe Coding: Who's Designing?
Testing Font Scaling for Accessibility with Figma Variables
font-size and line-height for each text style, covering scale increments of 120%, 140%, 160%, 180%, and 200%. The workflow requires auto layout applied consistently across all frames, text styles defined for every text element, and Figma variables structured per scale percentage using simple multiplication. Designers then copy screens and swap variable collections to expose layout breakdowns caused by fixed containers or missing auto layout configuration. Design systems that already use light/dark mode variable sets apply the same switching pattern, making the process incremental rather than disruptive. Issues that cannot be resolved in design are documented and handed off to the development team for code-level fixes.Designing for People with Low Vision
Test IDs Are an A11y Smell
data-testid attributes to locate elements in tests is a code smell that silently permits inaccessible markup to pass test suites. When a button is replaced with a clickable div, a test using data-testid continues to pass even though the element is no longer keyboard accessible and carries no semantic ARIA role. Role-based selectors from Testing Library or Playwright's built-in query API enforce semantic HTML as a side effect: if getByRole cannot find an element, neither can a screen reader or keyboard user. The author advocates structuring test queries as natural language actions — clicking the Confirm Button in the Save Dialog, filling the Email Field in the Registration Form — which ties test readability to accessible naming. Practical tips include using semantic HTML for implicit ARIA roles, associating all form controls with visible or visually-hidden labels, using Testing Playground to discover the best selector, and inspecting the browser's Accessibility tree view in DevTools.This week's design systems conversation was pulled in two directions: AI's growing role in design workflows, and accessibility's non-negotiable demands. Storybook 10.3 shipped an MCP server for React that gives AI agents structured awareness of component metadata — stories, API docs, usage examples — enabling agents to reuse existing design system components rather than generating conflicting patterns. Chromatic supports publishing the MCP server remotely with built-in versioning and auth. Separately, Figma's updated MCP server and skills integration, demonstrated via Claude Code's use_figma skill, established a bidirectional design token workflow: CSS globals flow into Figma as variables, and design changes round-trip back to code — though the non-deterministic nature of LLMs required re-prompting on the return pass.
Accessibility occupied significant space this week. Deque clarified the ADA Title II situation: despite federal review activity, no official compliance deadline changes have been announced, and the underlying ADA obligation for state and local governments remains enforceable through DOJ investigations regardless of any rule modifications. The recommendation is to continue WCAG 2.1 AA alignment and embed accessibility into CI/CD pipelines rather than treating it as a remediation phase. Tetralogical's guide on designing for low vision users surfaced concrete rules — no fixed heights on text containers, top-left placement for critical controls, and converting sticky navigation to hamburger menus at 400% zoom.
Testing and design methodology also featured: Dominik Dorfmeister's argument that data-testid selectors are an accessibility smell, because role-based selectors from Testing Library or Playwright enforce semantic HTML as a side effect, and Nielsen Norman Group's precise distinction between genUI (AI decides an interface is needed) and vibe coding (user requests an artifact), with genUI carrying greater design accountability because the AI judges whether an interface is warranted at all.
- Storybook 10.3's MCP server lets AI agents query component metadata (stories, API docs) before generating code, reducing design system drift in AI-assisted development.
- ADA Title II's underlying legal obligation for state and local governments predates the rule and remains in force regardless of any federal timeline changes — pausing accessibility work increases legal risk.
- data-testid selectors are an accessibility smell: role-based queries in Testing Library and Playwright enforce semantic HTML as a side effect, making inaccessible markup fail tests.