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

neumorui

v0.3.10

Published

Neumorphic UI component library for React — TypeScript, Tailwind, Radix primitives

Downloads

1,633

Readme


Install

npm install neumorui
# or
pnpm add neumorui

Quick Start

// 1. Wrap your app
import { NeuProvider } from "neumorui";
import "neumorui/styles";

function App() {
  return (
    <NeuProvider defaultTheme="light" defaultAccent="violet">
      <MyApp />
    </NeuProvider>
  );
}
// 2. Use components
import { Button, Input, Card, Grid, Col, Badge } from "neumorui";

function LoginPage() {
  return (
    <Grid cols={12} gap={16}>
      <Col span={7}>
        <Card>
          <Input label="Email" leftIcon="✉" placeholder="[email protected]" />
          <Input label="Password" type="password" placeholder="••••••••" />
          <Button variant="primary" style={{ width: "100%" }}>Sign In</Button>
        </Card>
      </Col>
      <Col span={5}>
        <Card>
          <Badge variant="success" dot>Online</Badge>
        </Card>
      </Col>
    </Grid>
  );
}

124 Components

| Category | Components | |---|---| | Form (24) | Button, Input, Textarea, Switch, Checkbox, RadioGroup, Select, Slider, ToggleGroup, FileUpload, OTPInput, Rating, TagInput, ColorPicker, SegmentedControl, PasswordInput, NumberInput, PhoneInput, PinInput, InputGroup, FormField, MultiSelect, RichTextEditor, MarkdownEditor | | Layout (11) | Card, Grid, Col, Divider, Hero, PricingCard, AspectRatio, ScrollArea, ResizablePanels, Masonry, Container | | Data Display (28) | Badge, Avatar, Progress, Skeleton, Spinner, DataTable, StatsCard, BarChart, DonutChart, LineChart, Heatmap, ComparisonTable, KanbanBoard, TreeView, ActivityFeed, Timeline, Chip, ImageGallery, Countdown, AreaChart, RadarChart, GaugeChart, Sparkline, UserCard, TestimonialCard, NotificationCard, CodeBlock, AvatarGroup | | Navigation (15) | Tabs, Breadcrumb, Pagination, Navbar, Sidebar, BottomNav, BrowserTabs, MegaMenu, SpeedDial, BackToTop, Dock, Steps, LinkPreview, CommandMenu, TableOfContents | | Overlay (9) | Modal, Popover, Tooltip, DropdownMenu, ContextMenu, Drawer, ConfirmDialog, Sheet, AlertDialog | | Feedback (10) | Alert, Toast, AnnouncementBar, CookieConsent, LoadingOverlay, Stepper, EmptyState, Snackbar, Banner, InlineMessage | | Disclosure (1) | Accordion | | Date (4) | Calendar, DatePicker, DateRangePicker, TimePicker | | Command (2) | Command, Combobox | | Animation (3) | Reveal, Marquee, Carousel | | Showpiece (5) | MusicPlayerCard, WeatherCard, ChatBubble, NotificationCenter, Onboarding | | Media (2) | AudioPlayer, VideoPlayer | | Utility (5) | CopyButton, Kbd, InfiniteScroll, QRCode, ThemeCustomizer | | AI Chat (5) | ChatInput, MessageList, StreamingText, ThinkingIndicator, PromptCard |

Features

  • Clay/Neumorphic design — Soft shadows, no hard borders, depth through light
  • Dark mode<NeuProvider followSystemTheme> or manual toggleTheme()
  • Fully customizable — Every component accepts className, style, and ...rest props
  • Animations — Hover lifts, press effects, scroll reveal, count-up numbers, spring easing
  • Interactive feedback — Raised/inset shadow states, drag/swipe, keyboard navigation
  • TypeScript — Full type definitions, no any
  • Radix UI — Accessible primitives for overlays, forms, and navigation
  • Pure inline styles — No Tailwind required, zero CSS conflicts
  • Versioned docs — Version selector dropdown, each release preserved on its own branch
  • 380 tests — Smoke tests for every component
  • Accessibility — eslint-plugin-jsx-a11y, ARIA attributes, keyboard navigation
  • Live playground — Interactive prop editor on docs pages
  • Global search — Cmd+K component search across docs

Dark Mode

// Auto (follows system)
<NeuProvider followSystemTheme>

// Manual toggle
const { theme, toggleTheme } = useNeuTheme();

Theming

Override CSS variables:

:root {
  --neu-bg: #f0f4ff;
  --neu-accent: #6c7ef8;
  --neu-danger: #f87c6c;
  --neu-success: #5ecba1;
  --neu-radius-md: 14px;
  --neu-shadow-raised: 7px 7px 18px rgba(180,190,220,0.8), -5px -5px 14px rgba(255,255,255,0.95);
}

[data-theme="dark"] {
  --neu-bg: #1a1e32;
  --neu-accent: #7c8ffa;
}

Hooks

import { useNeuTheme, useReveal, useCountUp, useRipple, useSnackbar } from "neumorui";

const { theme, toggleTheme, isDark } = useNeuTheme();
const { ref, visible } = useReveal();
const count = useCountUp(9240);
const { createRipple } = useRipple();
const { snackbar } = useSnackbar();

Links

| | Link | |---|---| | Docs | neumorui.vercel.app | | npm | npmjs.com/package/neumorui | | Storybook | rukonpro.github.io/neumorui | | GitHub | github.com/rukonpro/neumorui |

License

MIT — Rukon Uddin