npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@natiwo/a11y-morpheus

v0.1.0

Published

Morpheus Design System preset for @natiwo/a11y

Readme

@natiwo/a11y-morpheus

Morpheus Design System preset for @natiwo/a11y.

Maps accessibility and neurodiversity configurations to Morpheus Design System CSS classes. Use this preset when building interfaces with the Morpheus neumorphic design system.

Install

npm install @natiwo/a11y @natiwo/a11y-morpheus

Usage

With React

import { useA11y, useNeuro } from "@natiwo/a11y-react"
import { morpheusPreset } from "@natiwo/a11y-morpheus"

function App() {
  const a11y = useA11y({ preset: morpheusPreset })
  const neuro = useNeuro({ preset: morpheusPreset })
  // ...
}

Vanilla JS

import { applyA11y, applyNeuro, A11Y_DEFAULTS, NEURO_DEFAULTS } from "@natiwo/a11y"
import { morpheusPreset } from "@natiwo/a11y-morpheus"

applyA11y(A11Y_DEFAULTS, morpheusPreset)
applyNeuro(NEURO_DEFAULTS, morpheusPreset)

CSS Classes Applied

Accessibility (applyA11y)

| Config | CSS Effect | |--------|------------| | fontSize | Sets --a11y-font-size CSS variable | | contrastMode: "high" | Adds a11y-high class | | contrastMode: "low" | Adds a11y-low class | | contrastMode: "sepia" | Adds a11y-sepia class | | colorBlindMode: "protanopia" | Adds a11y-cvd-protanopia class | | colorBlindMode: "deuteranopia" | Adds a11y-cvd-deuteranopia class | | colorBlindMode: "tritanopia" | Adds a11y-cvd-tritanopia class | | cursorSize: "large" | Adds a11y-cursor-large class | | cursorSize: "xlarge" | Adds a11y-cursor-xlarge class | | reducedMotion: true | Adds a11y-reduced-motion class |

Neurodiversity (applyNeuro)

| Config | CSS Effect | |--------|------------| | focusHighlight: true | Adds neuro-focus class | | readingMode: true | Adds neuro-reading class | | spacing: "wide" | Adds neuro-spacing-wide class | | fontFamily: "dyslexia" | Adds neuro-font-dyslexia class | | fontFamily: "lexend" | Adds neuro-font-lexend class | | fontFamily: "atkinson" | Adds neuro-font-atkinson class | | textAlign: "left" | Adds neuro-text-left class | | reducedMotion: true | Adds neuro-reduced-motion class |

All classes are applied to document.documentElement (<html>). Define the corresponding CSS rules in your stylesheet.

Creating Your Own Preset

See the root README for how to implement the Preset interface for your own design system.

License

MIT © Natiwo