Skip to content
ColorArchive
Inclusive Design
2028-06-17

Color and Neurodiversity: Designing for ADHD, Autism, and Sensory Processing Differences

Standard color accessibility guidance covers colorblind users and WCAG contrast ratios, but does not address the color sensitivities associated with neurodevelopmental differences. ADHD, autism spectrum conditions, and sensory processing differences create color-related experiences that fall outside the WCAG model — experiences around chromatic intensity, visual complexity, and the overwhelming quality of certain color environments. Designers who understand these patterns can create more inclusive color systems without compromising visual design quality.

Highlights
High-saturation colors create a processing load that varies significantly between neurotypical and neurodivergent users. For many autistic individuals and people with sensory processing differences, highly saturated colors are not merely bright — they are actively uncomfortable, producing visual 'noise' that competes with the semantic content of the interface. The practical threshold: colors above approximately HSL(*, 85%, *) or with sRGB saturation above 90% are commonly reported as visually overwhelming for sensory-sensitive users when they appear as large surface areas. As accent colors in small quantities (borders, icons, status indicators) high saturation is generally tolerable; as background colors or dominant UI surfaces, high saturation should be avoided for inclusive design. Note: this is not a WCAG requirement — it is a usability consideration for a significant and underserved user population.
ADHD-related color considerations are different from autism-related ones. For many ADHD users, the concern is not sensory overwhelm from individual colors but chromatic complexity — many different colors competing for attention simultaneously. An interface with 8-10 different accent colors, each visually distinct, fragments attentional focus in ways that impair task completion for users with attention regulation differences. The recommendation: minimize chromatic variety. A system with one primary interactive color, one semantic color set (success/warning/error), and a neutral scale will serve ADHD users better than a richly chromatic system with many distinct colors. This is also good design practice generally — chromatic minimalism creates cleaner visual hierarchy for all users — but the case for it is particularly strong in contexts where attentional fragmentation is a real risk.
User control over color environment is the highest-value accommodation for neurodivergent users because the range of individual sensory profiles is too wide for any single color scheme to serve optimally. Providing a 'reduced stimulation' or 'calm mode' — typically a desaturated version of the standard palette where primary and accent colors shift to lower saturation — allows sensory-sensitive users to self-select an environment that works for them without requiring a separate product. Implementation: store the saturation multiplier as a CSS custom property (--saturation-scale: 0.4 in reduced mode vs 1.0 in standard mode) and apply it to all color custom properties at the hsl() calculation level. This produces a consistent desaturation across all colors without requiring separate color specifications for each theme.

Building a sensory-considerate color system

A color system designed with sensory considerations meets these criteria: (1) No surface colors above 75% saturation in the HSL model, except in accent use (less than 5% of screen area). (2) Backgrounds and large surfaces stay within a 10-degree hue range — multiple competing background hues create visual complexity that is disproportionately disorienting. (3) Maximum of 3-4 functionally distinct color signals in the interface at any time — semantic colors (success, warning, error) are always present; decorative accent colors should be used sparingly. (4) Provide a way to reduce contrast and saturation globally, even if it is not prominently advertised — a reduced stimulation preference that can be set in account settings serves users without becoming a primary design constraint. These criteria are compatible with visually rich design; they constrain chromatic intensity, not design quality.

The prefers-reduced-motion parallel: prefers-contrast and color

CSS media queries include `prefers-reduced-motion` (respect user OS settings for reduced animation) and `prefers-contrast` (support for high-contrast mode). A parallel for saturation sensitivity does not yet exist as a standard media query, but the user preference infrastructure is developing. Designers can implement their own saturation preference system today using a `data-sensory-mode="reduced"` attribute on the root element, toggled by a user preference UI and stored in localStorage. This allows automatic application of a reduced-saturation CSS variable set without requiring page reload. As browser support for advanced color preferences expands, this infrastructure will eventually integrate with OS-level accessibility settings.

Newer issue
Warm vs. Cool Color Bias in UI Design: Trust, Energy, and Psychological Register
2028-06-10
Older issue
Color in Wayfinding Design: Coding, Contrast, and the Psychology of Navigation
2028-06-24