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

paintcss

v0.2.0

Published

Some nice defaults for Circle.

Readme

Paint.css

Paint.css is a pattern library consisting of lightweight, reusable modules for Circle based on yeti.css. It has been built to reflect Circle's visual and branding guidelines.

Table of Contents

How to run?

For development mode:

npm install
npm start

The demo site will be available at http://localhost:8080. You can use the livereload extension and files will automatically rebuild and reload in the browser when you change them.

Structure

Paint.css is located in lib/paintcss and can be installed through npm. Variables and mixins can be found in lib/paintcss/globals and components in lib/paintcss/components. Markup for each component lives in public/templates.

Note: installing paint.css will not include assets or public.

├── assets
│   ├── logos
│   └── swatches
├── lib
│   └── paintcss
│       ├── components
│       ├── globals
│       └── index.styl
└── public
    ├── css
    ├── images
    ├── js
    ├── styl
    └── templates

How to include in your app

Paint.css is a Stylus plugin, so you just need to ensure Stylus knows to use the plugin, and then import it in your app.

Make sure that you have stylus available from command line:

npm install -g stylus

Static sites

If you are compiling your Stylus with its command line interface, maybe directly or via a Makefile or similar, it's as easy as:

  1. npm install paintcss --save-dev

  2. Add "-u paintcss" to the command: stylus -u paintcss ./path/to/app.styl

  3. Now you can import paintcss, or a subcomponent of paintcss, in your app's .styl files:

    @import 'paintcss'
    // or
    @import 'paintcss/components/type'

Single page apps using moonboots

The simplest way to include Paint.css in a moonboots app is to use stylizer;

  1. npm install paintcss --save

  2. Add 'paintcss' to the list of plugins in stylizer in your beforeCSS moonboots build step:

    beforeBuildCSS: function (done) {
        var plugins = ['paintcss'];
    
        if (config.isDev) {
            stylizer(stylesheetsDir + '/app.styl', stylesheetsDir + '/app.css', plugins, done);
        }
    },
  3. Import Paint.css or a submodule of Paint.css in your app's .styl files:

    @import 'paintcss'
    //or
    @import 'paintcss/components/type'

Version Pinning

It's strongly recommended that you pin to a specific version of paint.css, so that updates to the styleguide don't break your site. To do that, reference a specific tagged release in your package.json by appending # to the git url, e.g.:

```js
    //package.json

    {
        //...
        "dependencies": {
            "paintcss": "git+ssh://[email protected]/meetcircle/paint.css#v0.1.0"
        },
        //...
    }
```

You can see the list of available releases at: https://github.com/meetcircle/paint.css/releases.

Custom fonts

Paint.css defines Gotham Rounded as the default typeface. Use Typography.com to set up font serving accordingly or change the typeface variables here.

CSS Reset

A CSS reset is included in Paint.css by default (namely normalize.css).

Documentation

Documentation and examples of usage can be found on http://meetcircle.github.io/paint.css.

Contributing

See the CONTRIBUTING.md for information on how to contribute to yeti.css.

License

MIT