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 🙏

© 2025 – Pkg Stats / Ryan Hefner

gisketch-neumorphism

v2.0.0

Published

A neumorphic component library based on shadcn/ui

Readme

gisketch-neumorphism

A neumorphic React component library based on shadcn/ui. Designed specifically for dashboard applications with a soft, tactile UI aesthetic.

Features

  • 🎨 Neumorphism Design - Soft shadows, rounded corners, and depth effects
  • 🌓 Dark/Light Mode - Full theme support with CSS variables
  • 📦 Tree-shakeable - Import only what you need
  • 🔧 Customizable - Built with Tailwind CSS and CSS variables
  • 📱 Dashboard-ready - Components designed for data visualization and admin panels

Installation

npm install gisketch-neumorphism

Quick Start

1. Import the styles

import "gisketch-neumorphism/styles.css";

2. Configure Tailwind CSS

/** @type {import('tailwindcss').Config} */
export default {
  darkMode: ["class"],
  content: [
    "./src/**/*.{js,ts,jsx,tsx}",
    "./node_modules/gisketch-neumorphism/dist/**/*.{js,ts,jsx,tsx}",
  ],
};

3. Use components

import { Button, Card, CardContent, Input, Badge } from "gisketch-neumorphism";

export function Dashboard() {
  return (
    <Card variant="flat">
      <CardContent className="p-6 space-y-4">
        <Badge variant="success">Active</Badge>
        <Input placeholder="Search..." />
        <Button variant="primary">Submit</Button>
      </CardContent>
    </Card>
  );
}

Components

Core Components

  • Button - Interactive buttons with flat, pressed, primary, destructive, success, warning variants
  • Card - Container with flat, pressed, convex, and interactive variants
  • Input - Text input with pressed (inset) and flat shadow styles
  • Textarea - Multi-line input with neumorphic styling

Form Components

  • Select - Dropdown select with neumorphic styling
  • RadioGroup - Radio button groups
  • Checkbox - Checkbox inputs with pressed/raised states
  • Switch - Toggle switches for boolean settings
  • FileUpload - Drag and drop file upload with preview
  • Label - Form labels
  • FormField - Form wrapper with label, description, and error support

Dashboard Components

  • Sidebar - Navigation sidebar with collapsible support
  • Table - Data tables with neumorphic styling
  • Badge - Status indicators and labels
  • Avatar - User profile images with neumorphic containers
  • Progress - Progress bars for loading states and metrics
  • Slider - Range slider for numeric values

Layout & Typography

  • Separator - Visual dividers
  • Skeleton - Loading placeholders
  • Heading - H1-H6 typography
  • Text - Paragraph and text variations
  • Code - Code blocks and inline code
  • Blockquote - Quote styling
  • List - Ordered and unordered lists

Neumorphism Design Tokens

The library uses CSS variables for theming:

:root {
  /* Shadows */
  --shadow-light: 255, 255, 255;
  --shadow-dark: 200, 200, 210;
  
  /* Primary color (HSL components) */
  --primary-h: 217;
  --primary-s: 70%;
  --primary-l: 55%;
}

.dark {
  --shadow-light: 50, 50, 55;
  --shadow-dark: 15, 15, 18;
}

Documentation

For detailed documentation, usage examples, and the complete neumorphism design guide, see USAGE.md.

Development

# Install dependencies
npm install

# Run dev server with component viewer
npm run dev

# Build library
npm run build

License

MIT