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

@kablan/clean-ui

v1.0.9

Published

CleanUI is a huge and utterly complex scss package that provides me my basic styles for my projects. Feel free to use it, but please do not copy it and claim it as your own. ```npm npm install @kablan/clean-ui --save ``` # Usage ### SCSS Import the

Readme

CleanUI

What, why, how?

CleanUI is a huge and utterly complex scss package that provides me my basic styles for my projects. Feel free to use it, but please do not copy it and claim it as your own.

npm install @kablan/clean-ui --save

Usage

SCSS

Import the SCSS entry point in your main SCSS file. You can optionally override the default variables in /scss/_variables.scss before importing the styles.

// Optionally override default variables from /scss/_variables.scss
$primary: #ff00ff;

// Import the CleanUI styles and partials
@use '@kablan/clean-ui/scss/_imports.scss' as imports;
@use '@kablan/clean-ui/scss/_utils.scss' as utils;
@use '@kablan/clean-ui/scss/_variables.scss' as *;
@use '@kablan/clean-ui/scss/_interactable.scss' as *;
@use '@kablan/clean-ui/scss/_containers.scss' as *;
@use '@kablan/clean-ui/scss/_layout.scss' as *;
@use '@kablan/clean-ui/scss/_highlight.scss' as *;
@use '@kablan/clean-ui/scss/index.scss' as *;

CSS

If you do not use SCSS, you can include the precompiled CSS directly in your HTML or via import by using the CDN from cloudflare:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/clean-ui/1.0.0/css/index.css">
import '@kablan/clean-ui/css/index.css';

Code Highlighting

This package also includes a color theme for Highlight.js. To use it, make sure you import Highlight.js in your project as well, e.g.:

<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<script> hljs.highlightAll(); </script>
  • SCSS: Allows variable overrides and tree-shaking via @use.
  • CSS: Precompiled version for direct use without SCSS processing. Though, no variable overrides are possible.

See _variables for all available variables._

Publishing to npm

To publish CleanUI to npm, follow these steps:

  1. Update your package version

    • Edit package.json and increment the version field as needed.
  2. Build your package

    • Make sure your CSS/SCSS is compiled and all files are ready for publishing.
  3. Login to npm

    • Run npm login in your terminal and enter your npm credentials.
  4. Publish the package

    • Run npm publish --access public in your project root directory.

Notes:

  • Make sure your package name in package.json is unique and scoped (e.g. @kablan/clean-ui).
  • Do not include sensitive information (passwords, keys) in your repository.
  • You must have permission to publish to the npm scope you use.

For more details, see the npm publish documentation.