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 🙏

© 2024 – Pkg Stats / Ryan Hefner

stylewars

v2.4.0

Published

A tiny CSS in JS library that requires no tooling

Downloads

63

Readme

Stylewars

Checks Bundle Size

A tiny CSS in JS library that requires no tooling.

Just define your CSS rules and apply them.

  • Easy learning curve
  • Only one concept on top of CSS
  • Gives you all of the power of CSS
  • Framework agnostic
  • Unique class names
  • Allows multiple versions in the page

Live examples

Style Wars (1983)

Installation

NPM

npm install stylewars

unpkg.com

import {
  css,
  classes,
} from "https://unpkg.com/[email protected]/dist/bundle.esm.js";

or

import {
  css,
  classes,
} from "https://unpkg.com/[email protected]/dist/bundle.esm.min.js";

Minification

You can use the babel-plugin-stylewars to minify the CSS templates in place.

Usage

See the live examples

This example shows usage together with React, but the library can be used together with any framework.

import React from "react";
import { css, classes } from "stylewars";

const buttonStyles = css`
  & {
    border-radius: 4px;
    background: #587894;
    color: white;
    border: none;
    padding: 0.5em 2em;
  }

  &:hover {
    background: #89a2b9;
  }
`;

const BoringButton = ({ children, ...other }) => (
  <button {...other} className={buttonStyles}>
    {children}
  </button>
);

As you can see it is just plain CSS with one exception & will be replaced by a unique class.

Using placeholders

You can also use placeholders to generate classes dynamically.

import { lighten } from "polished";

const coloredBackground = (color) => css`
  & {
    background: ${color};
  }

  &:hover {
    background: ${lighten(0.2, color)};
  }
`;

const FancyButton = ({ color, children, ...other }) => (
  <button
    {...other}
    className={classes(buttonStyles, coloredBackground(color))}
  >
    {children}
  </button>
);

Just make sure only to use this method for a limited amount of values as it generates new classes. Alternatively you can use CSS variables.

Using global classes

If you need to apply a global class, it can be done this way:

const GloballyStyledButton = ({ color, children, ...other }) => (
  <button
    {...other}
    className={classes("global-class", coloredBackground(color))}
  >
    {children}
  </button>
);

Conditional styling

You can conditional apply styles this way:

const MaybeColoredButton = ({ color, children, ...other }) => (
  <button
    {...other}
    className={classes(buttonStyles, color && coloredBackground(color))}
  >
    {children}
  </button>
);

CSS key frames

You can get a hashed identifier with the following syntax: &(identifier). This is useful for naming CSS key frames.

const fadeInStyles = css`
  & {
    animation: 750ms linear 0s 1 normal none running &(fade-in);
  }

  @keyframes &(fade-in) {
    0%,
    60% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
`;

const FadeInButton = ({ color, children, ...other }) => (
  <button {...other} class={classes(buttonStyles, fadeInStyles)}>
    {children}
  </button>
);

Theming

You just use CSS variables.

const themedButtonStyles = css`
  & {
    background: var(--accent-color, #587894);
    color: var(--text-color, white);
  }

  &:hover {
    background: var(--accent-highlight-color, #89a2b9);
  }
`;

const ThemedButton = ({ color, children, ...other }) => (
  <button {...other} class={classes(buttonStyles, themedButtonStyles)}>
    {children}
  </button>
);

Now you can apply a theme to the DOM sub-tree the following way:

const yellowTheme = css`
  & {
    --text-color: black;
    --accent-color: #fed6a8;
    --accent-highlight-color: #ffb057;
  }
`;

const Example = () => (
  <section className={yellowTheme}>
    <ThemedButton>I'm themed</ThemedButton>
  </section>
);

MIT License

Copyright (c) 2020 Sune Simonsen mailto:[email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.