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

@iltchenko/acss-framework

v1.0.0-beta.1

Published

Production-ready, multi-application CSS framework with dynamic customization capabilities

Readme

ACSS Framework 🎨

A production-ready, atomic CSS framework with dynamic customization capabilities built on UnoCSS

Beta Release License: MIT TypeScript Framework Agnostic WCAG AA

🚧 Beta Release: This is a beta version for community testing and feedback. Join our beta testing program!

🎉 Beta Release Highlights

This beta release introduces the complete ACSS Framework ecosystem, ready for community testing and feedback.

What's New in Beta

  • 🎨 Dynamic Theme Engine: Real-time theme customization with CSS custom properties
  • 🖼️ Visual Theme Editor: Interactive theme customization interface
  • 🌐 Framework Integration: React, Vue, Svelte, and vanilla JavaScript support
  • ⚡ Performance Optimized: Minimal bundle size with tree-shaking support
  • ♿ Accessibility First: WCAG 2.1 AA compliant with screen reader support
  • 📱 Responsive Design: Mobile-first approach with fluid typography
  • 🔧 TypeScript Support: Full type definitions and IntelliSense support

✨ Features

  • 🎨 Dynamic Theme System - Runtime theme customization with CSS variables
  • 🧩 Modular Presets - Typography, layout, components, animations, and utilities
  • 🎛️ Visual Theme Editor - Live preview and export functionality
  • 📱 Container Queries - Modern responsive design patterns
  • 🔤 Fluid Typography - Mathematical scaling with CSS clamp()
  • 🌙 Dark Mode - Built-in light/dark theme support
  • 📦 Tree Shakable - Optimized bundle sizes with modern exports
  • 🔧 TypeScript - Full type safety and IntelliSense support

🚀 Quick Start

Installation

# Install the beta version
npm install @acss/framework@beta

# Or with yarn
yarn add @acss/framework@beta

# Or with pnpm
pnpm add @acss/framework@beta

Basic Setup

// uno.config.ts
import { defineConfig } from 'unocss'
import { presetACSSFramework } from '@acss/framework'

export default defineConfig({
  presets: [
    presetACSSFramework({
      // Optional configuration
      features: {
        fluidTypography: true,
        containerQueries: true,
        darkMode: true
      }
    })
  ]
})

Using with CSS

/* Import base styles */
@import '@acss/framework/css';

/* Your custom styles */
.my-component {
  @apply text-lg font-semibold text-primary-600;
}

📖 Documentation

Core Concepts

Presets

Advanced Features

Integration Guides

🎨 Theme Editor

The ACSS Framework includes a powerful visual theme editor for real-time customization:

import { ThemeEditor } from '@acss/framework/editor'

const editor = new ThemeEditor({
  container: '#theme-editor',
  theme: myTheme,
  onThemeChange: (newTheme) => {
    // Apply theme changes
    applyTheme(newTheme)
  }
})

🏗️ Architecture

The framework is built with a modular architecture:

@acss/framework
├── Core Theme Engine     # Dynamic theme system
├── Modular Presets      # Typography, layout, components
├── Visual Editor        # Theme customization UI
├── Design Tokens        # Primitive, semantic, component
└── Utilities           # Helper functions and validation

📦 Package Exports

// Main framework
import { presetACSSFramework } from '@acss/framework'

// Individual presets
import { typographyPreset } from '@acss/framework/presets'

// Theme engine
import { ThemeEngine } from '@acss/framework/theme-engine'

// Visual editor
import { ThemeEditor } from '@acss/framework/editor'

// CSS styles
import '@acss/framework/css'

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT License - see the LICENSE file for details.

🙏 Acknowledgments

Built with UnoCSS and inspired by atomic CSS methodologies.