Neumorphism is a soft-UI design style that uses paired light and dark shadows on a monochromatic surface to make interface elements appear to protrude from or sink into the background. According to Wikipedia, the technique earns the label “soft UI” precisely because components look integral to the surface rather than floating above it. The Interaction Design Foundation frames the central debate clearly: the style offers genuine aesthetic novelty, but its low-contrast palettes create real usability and accessibility risks, particularly for users with visual impairments and for anyone viewing a screen in bright light.
TL;DR
- Neumorphism emerged as a reaction to flat design’s perceived sterility.
- Its signature visual cue is the dual-shadow technique using paired light and dark shadows to simulate a physical light source.
- Its principal drawback is low contrast, which frequently fails WCAG requirements for interactive elements and reduces the discoverability of controls.
Table of Contents
- Where did neumorphism come from?
- What are the core visual principles of neumorphism?
- How do you create the neumorphic effect in CSS?
- Neumorphism vs flat design vs skeuomorphism: which suits your project?
- What are the accessibility and usability problems with neumorphism?
- Where does neumorphism work well, and where should you avoid it?
- What comes next for neumorphism in 2026?
- Should your UK business use neumorphism? A MedwayWebDesign perspective
- Key takeaways
- The case for restraint: why neumorphism rewards discipline
- Authoritative further reading
Where did neumorphism come from?
Neumorphism emerged around 2019 as designers sought a middle ground between the tactile realism of skeuomorphism and the stripped-back geometry of flat design. The name itself is a contraction of “new skeuomorphism,” and that etymology is instructive. Skeuomorphism, which dominated early mobile UI through the iOS 6 era, replicated physical textures and objects in digital form: leather-stitched calendars, wooden bookshelves, felt-lined game tables. Flat design, which Apple and Google both adopted from roughly 2013 onwards, discarded those textures in favour of solid colours, crisp typography, and geometric simplicity.
Neumorphism kept flat design’s clean geometry but reintroduced a sense of physical depth, not through textures or gradients that mimic real materials, but through carefully calibrated shadows. The result is a surface that appears moulded from a single material, with controls that seem pressed into or raised out of it.
The trend gained momentum on Dribbble and Behance, where concept screens circulated widely from late 2019 into 2020. Design publications and communities picked up the conversation quickly, and the term entered mainstream UI vocabulary within months. That rapid diffusion is partly why the critique arrived so fast: designers began testing the style in real products and discovered the accessibility problems almost immediately.

What are the core visual principles of neumorphism?
The entire neumorphism design concept rests on a single physical metaphor: a uniform surface lit from one direction. Understanding that metaphor makes every other principle follow logically.

Light-source simulation and the dual-shadow technique
A simulated light source sits at the top-left of the composition. Elements that protrude from the surface catch that light on their upper-left face, casting a light-coloured shadow there, while their lower-right face falls into relative shade, producing a darker shadow. Figr’s analysis of neumorphism confirms that this paired shadow approach—one light and one dark, applied simultaneously—is the non-negotiable technical foundation of the style. A single drop shadow produces depth; the dual shadow produces the illusion of extrusion from the surface itself.
Palette, geometry, and background integration
Neumorphic designs use monochromatic or tightly muted colour palettes. The background, the element surface, and the shadows all share the same base hue, differing only in lightness. Rounded corners are standard, softening the geometry to reinforce the tactile impression. Heavy textures and strong colour contrasts are deliberately avoided, which is precisely what creates the accessibility problem discussed later.

Components that suit this treatment include buttons, toggle switches, sliders, input fields, and card containers. A button in a neumorphic system does not sit on top of the background; it appears to grow out of it. A pressed or active state inverts the shadow logic to create an inset impression, giving the interaction a physical quality that flat buttons cannot replicate.
Pro Tip: Reserve neumorphic styling for decorative or non-critical surfaces first. Apply it to a card container or a hero section skin before touching primary buttons or form fields, so you can evaluate the visual effect without risking conversion or accessibility compliance.
How do you create the neumorphic effect in CSS?
The CSS implementation of neumorphism depends on layered box-shadow declarations. CSS-Tricks documents the technical demands clearly: a single shadow is insufficient because it only pushes the element away from the surface; the dual shadow is what creates the extrusion illusion. The technique is also brittle, meaning that changing the background colour or switching themes breaks the visual effect unless the shadow colours are updated in tandem.
Step-by-step: building a basic neumorphic card
- Define CSS variables for the base colour and shadow offsets. Set
--bg: #e0e5ec,--shadow-light: #ffffff, and--shadow-dark: #a3b1c6at the:rootlevel. Every shadow value derives from these variables, so a single change propagates correctly. - Apply the outer dual shadow to the raised state. Use
box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light). The positive offsets push the dark shadow to the bottom-right; the negative offsets push the light shadow to the top-left. - Set the element background to match the root background exactly. The background integration is what distinguishes neumorphism from a standard card with a drop shadow. If the element colour differs from the page background, the illusion collapses.
- Add an inset shadow for the pressed or active state. Switch to
box-shadow: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light)on:activeor.pressed. This reverses the depth cue and communicates interaction. - Add a visible focus indicator separately. Because the shadow-based affordance is insufficient for keyboard users and screen readers, add an explicit
outlineon:focus-visibleusing a colour that meets WCAG AA contrast against the background.
:root { --bg: #e0e5ec; --shadow-light: #ffffff; --shadow-dark: #a3b1c6; --radius: 12px; } .neu-card { background: var(--bg); border-radius: var(--radius); box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light); padding: 24px; } .neu-card:focus-visible { outline: 3px solid #1a3a6b; outline-offset: 2px; } .neu-button:active { box-shadow: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light); } Two practical warnings apply here. First, Figr notes that placing neumorphic elements on image backgrounds or unpredictable surfaces destroys the effect entirely, because the shadow colours are calibrated to one specific base. Isolate neumorphic surfaces on solid, controlled backgrounds. Second, dark-mode implementations require a completely separate set of shadow variables; the light/dark shadow logic inverts in dark themes, and attempting to derive dark-mode shadows from light-mode variables produces muddy, unconvincing results.
Pro Tip: Use a tool such as Spark Concept’s idea checker to prototype neumorphic skins rapidly before committing to a full build. Validating the visual concept early prevents costly rework when accessibility or theming issues surface.
Neumorphism vs flat design vs skeuomorphism: which suits your project?
The three styles occupy distinct positions on the realism-to-abstraction spectrum, and each carries different implications for usability, development complexity, and accessibility.
| Dimension | Skeuomorphism | Neumorphism | Flat design |
|---|---|---|---|
| Visual depth | High: textures, gradients, realistic materials | Medium: shadow-based, surface-level depth | Low: solid colours, no depth cues |
| Affordance clarity | High: controls mimic physical objects | Low: subtle shadows can obscure interactivity | High: colour and shape conventions signal function |
| Contrast and accessibility | Variable: depends on implementation | Poor: low contrast by design | Good: high contrast achievable by default |
| Technical complexity | High: asset-heavy, image-dependent | High: brittle CSS, theme-sensitive | Low: CSS-native, easy to maintain |
| Best use cases | Niche: brand storytelling, luxury products | Decorative skins, concept screens, marketing microsites | High-conversion UIs, data-dense dashboards, accessibility-critical flows |
CSS-Tricks warns that neumorphism reduces the visual prominence of primary calls to action, which is a direct risk for conversion-focused interfaces. Flat design, or its evolution in Material Design and Apple’s Human Interface Guidelines, remains the safer default for any UI where users must complete tasks reliably. Neumorphism earns its place when the goal is aesthetic differentiation rather than functional clarity, for example on a product concept screen, a marketing landing page hero, or a design system’s decorative component library. For card-based layouts, a neumorphic skin can add visual interest without compromising navigation, provided interactive elements within the card retain sufficient contrast.
What are the accessibility and usability problems with neumorphism?
The Interaction Design Foundation identifies the core problem precisely: neumorphism’s low-contrast palettes make interactive elements difficult to recognise, particularly for users with low vision, colour-vision deficiencies, or anyone using a device in direct sunlight. Most neumorphic UIs fail automated WCAG contrast checks for interactive elements, making the style a compliance risk for any UK business subject to the Equality Act 2010’s accessibility provisions.
The specific failure modes are worth naming individually:
- Discoverability: Controls that blend into the background surface are not immediately identifiable as interactive. Users without prior exposure to the style may not recognise a neumorphic button as a button at all.
- Contrast: WCAG 2.1 AA requires a contrast ratio of at least 4.5:1 for normal text and 3:1 for large text and UI components. Neumorphic designs, by definition, minimise contrast between element and background, routinely falling below both thresholds.
- Outdoor and bright-light legibility: The subtle shadow differentiation that defines the style becomes invisible in high-ambient-light conditions, rendering the UI effectively unusable.
- Keyboard and screen-reader navigation: Without explicit focus indicators, keyboard users cannot track their position in the interface. Screen readers rely on semantic HTML and ARIA roles, not visual shadow cues, so the neumorphic aesthetic provides no assistive-technology benefit.
Accessibility checklist for neumorphic components
- Run every interactive element through a contrast checker such as the WebAIM Contrast Checker or the browser’s built-in accessibility audit (Chrome DevTools Lighthouse).
- Add explicit
outlinestyles on:focus-visiblefor all keyboard-navigable elements, using a colour that achieves at least 3:1 contrast against the background. - Supplement shadow-based affordance with additional cues: a visible border, a text label, or an icon that communicates function independently of the shadow effect.
- Test on a physical device outdoors in daylight, not only on a calibrated studio monitor.
- Conduct a brief discoverability test with five users unfamiliar with the design: ask them to identify the primary action on each screen without prompting.
A pragmatic mitigation, endorsed by the UX Design Institute, is the hybrid pattern: apply neumorphic styling to non-interactive surfaces such as card containers and decorative hero sections, while retaining high-contrast flat controls for all primary CTAs, form inputs, and navigation elements. This approach preserves the aesthetic without compromising the usability of critical interactions. Avoiding common UI design mistakes such as insufficient contrast and unclear hierarchy is particularly important when experimenting with low-contrast styles.
Where does neumorphism work well, and where should you avoid it?
Neumorphism is not a universal design system; it is a visual treatment that suits specific contexts and fails in others.
Components and contexts where it works:
- Decorative card containers: A neumorphic card on a product landing page adds tactile depth without requiring the card itself to be interactive. The shadow treatment signals “content area” rather than “click here.”
- Concept screens and design system showcases: Neumorphism photographs well and renders impressively in static mockups, making it a strong choice for portfolio pieces, pitch decks, and design system documentation where visual impact matters more than task completion.
- Marketing microsites and hero sections: A hero section with a neumorphic background treatment and a high-contrast CTA button above it captures the aesthetic benefit while keeping the conversion element fully legible.
- Input field skins: Inset neumorphic styling on text inputs communicates “type here” through the recessed shadow, provided the label and placeholder text meet contrast requirements independently.
Contexts to avoid:
- Primary CTA buttons on revenue-critical pages: The low-contrast shadow affordance is insufficient for a button that must convert visitors. A high-converting hero section depends on an unambiguous, visually dominant CTA.
- Data tables and admin dashboards: Information-dense UIs require clear visual hierarchy and rapid scanability. Neumorphic styling flattens that hierarchy.
- Accessibility-critical flows: Checkout processes, form submissions, error states, and onboarding flows all require unambiguous affordance cues that neumorphism cannot reliably provide.
- Mobile interfaces in variable lighting: The shadow subtlety that defines the style degrades significantly on lower-quality screens and in outdoor conditions.
What comes next for neumorphism in 2026?
Neumorphism has not disappeared; it has matured. The design community’s response to the accessibility critique has produced a set of hybrid patterns that preserve the aesthetic while addressing the functional shortcomings.
- Hybrid systems: LogRocket’s analysis confirms that design teams increasingly apply neumorphic styling to decorative surfaces while using high-contrast flat controls for all interactive elements. This separation of aesthetic and functional layers is now the dominant professional approach.
- Microinteraction pairings: Pairing neumorphic pressed states with subtle haptic or animated feedback improves affordance without increasing contrast. Animation techniques such as scale transitions on button press reinforce the physical metaphor through motion rather than relying solely on shadow.
- Dark-mode neumorphism: Designers have developed inverted shadow palettes for dark themes, using deep charcoal bases with near-black and near-white shadow pairs. The effect is more dramatic and, in some implementations, achieves better contrast than its light-mode counterpart.
- Glassmorphism crossover: Some 2025–2026 UI concepts blend neumorphic surface depth with glassmorphism’s translucency, producing layered compositions that retain the soft aesthetic while introducing more visual separation between elements.
Within the broader 2026 UI design trend landscape, neumorphism occupies a clear niche: it is a delighter, not a system. Design teams that treat it as a complete design language encounter the same accessibility problems that surfaced in 2020. Those that deploy it as a selective visual skin, applied to non-critical surfaces within an otherwise conventional system, continue to find genuine value in it.
Should your UK business use neumorphism? A MedwayWebDesign perspective
The decision to commission neumorphic design is not primarily an aesthetic one; it is a business and compliance question. UK businesses operating public-facing websites have obligations under the Equality Act 2010 and, for public sector organisations, the Public Sector Bodies Accessibility Regulations 2018. Failing WCAG 2.1 AA contrast requirements is not a stylistic choice; it is a legal exposure.
A practical decision flow for UK small businesses runs as follows: identify the primary business goal for the page or product, assess whether the audience includes users with accessibility needs (the answer is almost always yes), determine whether the page contains revenue-critical interactions, and then evaluate whether neumorphic styling can be applied exclusively to non-interactive surfaces. If all four conditions are satisfied, a hybrid implementation is viable. If the page is a checkout flow, a primary lead-generation form, or a navigation system, neumorphism should not be applied to interactive elements at all.
Implementation checklist for agencies:
- Prototype the neumorphic treatment on a static mockup before writing production CSS.
- Run automated contrast checks on every interactive element using Lighthouse or the WebAIM Contrast Checker.
- Confirm that all buttons, links, and form controls retain explicit focus states and meet WCAG 2.1 AA contrast ratios independently of the shadow effect.
- A/B test the neumorphic skin against the existing design on a non-critical page before deploying to revenue-critical flows.
- Document the CSS variable structure so that theme changes (dark mode, brand refresh) can be applied without rebuilding the shadow system.
- Confirm responsive behaviour: test the shadow rendering on mid-range Android devices and in outdoor lighting conditions, not only on high-resolution studio monitors.
MedwayWebDesign’s approach to experimental visual treatments follows a consistent principle: the aesthetic serves the conversion goal, not the other way around. When a client requests neumorphic styling, the agency prototypes the treatment, tests it against the existing baseline, and applies it only where it demonstrably does not reduce task completion or contrast compliance. For UK small businesses considering this approach, the business web design guide sets out how MedwayWebDesign structures that process from brief to deployment.
Pro Tip: Before briefing an agency on neumorphic design, audit your current site’s WCAG contrast scores using Chrome DevTools Lighthouse. If your existing design already has contrast failures, adding a low-contrast visual treatment will compound the problem rather than solve it.

Key takeaways
Neumorphism is a visually distinctive soft-UI style that works best as a decorative skin on non-interactive surfaces, not as a complete design system for conversion-critical interfaces.
| Point | Details |
|---|---|
| Definition | Neumorphism uses paired light and dark shadows on a monochromatic surface to simulate physical depth. |
| Primary benefit | Delivers strong visual differentiation on decorative surfaces, concept screens, and marketing hero sections. |
| Principal risk | Low-contrast palettes routinely fail WCAG 2.1 AA contrast requirements for interactive elements. |
| Quick mitigation | Apply neumorphic styling to non-interactive surfaces only; use high-contrast flat controls for all CTAs and form inputs. |
| Recommended approach for UK businesses | Prototype and A/B test before deploying; confirm WCAG compliance in the specific site context before launch. |
The case for restraint: why neumorphism rewards discipline
Neumorphism is one of the more instructive design trends of the past decade, not because it succeeded as a system, but because it failed so publicly and so quickly. The accessibility critique arrived within months of the trend’s peak, and that speed reflects something worth noting: the design community’s evaluation frameworks, particularly WCAG and the tooling around it, are now mature enough to surface structural problems in a visual style before it reaches widespread production use.
The lesson for any business considering experimental aesthetics is not that novelty is dangerous. It is that novelty applied to functional controls, the elements users must interact with to complete a task, carries a different risk profile than novelty applied to decorative surfaces. A neumorphic hero section background is a low-stakes experiment. A neumorphic checkout button is not.
What practitioners have learned since 2020 is that the style’s genuine strength lies in its surface quality, the sense that a UI has been moulded from a single material, rather than in its ability to communicate interactivity. Separating those two concerns, aesthetic surface from functional control, is what makes hybrid neumorphism viable. Design teams that maintain that separation consistently produce work that is both visually distinctive and commercially sound.
For UK businesses, the practical implication is straightforward: commission neumorphic treatments as a visual skin, test them against your existing conversion baseline, and never apply them to a control that a user must find and activate to complete a purchase or submit a form. The aesthetic reward is real. The risk is manageable, but only with that discipline in place.
Authoritative further reading
The sources below informed this guide and provide deeper implementation detail for designers and developers who want to go further.
- Neumorphism — Interaction Design Foundation: The most thorough treatment of the accessibility and usability trade-offs, with references to WCAG and visual impairment research.
- Neumorphism and CSS — CSS-Tricks: The definitive technical reference for the box-shadow implementation, theming pitfalls, and responsive considerations.
- Neumorphic design: What it is and how to use it effectively — LogRocket Blog: Practical UX guidance on hybrid patterns and when to favour conventional controls.
- Neumorphism — Wikipedia: Neutral definitional reference covering the term’s origin and early diffusion.
- Business web design guide — MedwayWebDesign: Agency guidance on commissioning design work that balances visual ambition with commercial and compliance requirements.
- Custom web design for small businesses — MedwayWebDesign: How MedwayWebDesign approaches bespoke visual treatments, including experimental styles, within a structured project process.