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

syncss

v0.3.0

Published

A lightweight SASS starter for swiftly crafting design systems, tailored to reflect your design rules.

Downloads

128

Readme

Syncss

A lightweight SASS starter for swiftly crafting design systems, tailored to reflect your design rules.

The principle of Syncss is to isolate all the rules governing your design system into a readily accessible configuration. All the framework's code is available directly within your codebase, allowing you to easily edit it according to your needs.

configs/borders.scss contains the $default-radius variable. If you change this value, it will impact many visual elements (such as form inputs or buttons). The same applies to the $default-size variable for border size or the $primary variable in configs/colors.scss.

image

Installation

npm install syncss --save-dev

Concepts

Syncss is based on a simple concept, split into three parts:

  • Simple configuration: where we can easily change the rules of your design system.
  • Accessible helpers: to use your configuration everywhere.
  • Synchronized components: to create more complex elements, based on helpers and/or configuration.

image

Configuration

Initially, I encourage you to browse the files contained in the 'config' folder and input your spacing values, color palette, typographies, and so on.

Example:

With the default configs/spaces.scss configuration, $space-value is equal to 5px and $regulated-multiplicators sets the multiples of this value available in your design system. With this configuration, we have this table of available spaces:

| Key | Multiples | Value | | :-: |:-:| :-:| | 0 | 0 | 0px | | 1 | 1 | 5px | | 2 | 2 | 10px | | 3 | 3 | 15px | | 4 | 4 | 20px | | 5 | 6 | 30px | | 6 | 10 | 50px | | 7 | 20 | 100px | | 8 | 40 | 200px |

If you put $space-value: 0.2em; and $regulated-multiplicators: 0, 1, 2, 3, 4, 5, 7, 10, 15, 20; in your config, this table will automatically update to (note: adding multiplicators will create a new key): | Key | Multiples | Value | | :-: |:-:| :-:| | 0 | 0 | 0em | | 1 | 1 | 0.2em | | 2 | 2 | 0.4em | | 3 | 3 | 0.6em | | 4 | 4 | 0.8em | | 5 | 5 | 1em | | 6 | 7 | 1.4em | | 7 | 10 | 2em | | 8 | 15 | 3em | | 9 | 20 | 4em |

Helper

When your rules match your design system, helpers will produce design tokens usable everywhere in your project.

Example:

With the available spacing configuration explained above, we can build more complex rules like the object in the $config variable of configs/spaces.scss. This will produce design tokens like m-[key] (m-0, p-2, mt-6, px-8, ...) and this with responsiveness if needed.

// configs/spaces.scss

$config: (
  get(0), // key 0
  get(1), // key 1
  get(2), // key 2
  ( // key 3
    "mobile": get(2),
    "tablet": get(3),
  ),
  ( // key 4
    "mobile": get(3),
    "tablet": get(4),
  ),
  ( // key 5
    "mobile": get(4),
    "tablet": get(5),
  ),
  ( // key 6
    "mobile": get(5),
    "tablet": get(6),
  ),
  ( // key 7
    "mobile": get(5),
    "tablet": get(6),
    "desktop": get(7),
  ),
  ( // key 8
    "mobile": get(6),
    "tablet": get(7),
    "desktop": get(8),
  )
);

So with this configuration, m-1 will create a 5px margin, and pt-8 will create a responsive padding-top (50px on mobile, 100px on tablet, and 200px on desktop).

Component

This folder contains basic structures for more complex visual elements. Components can use design tokens created before and read some values from the configuration. They can be used on multiple HTML tags (they do not impact semantics) and can apply in-place styles for children elements.

Like in a design system, your components can have visual variations.

Note: These are style components and they are not related to JS components like Vue.js or React.

Example:

components/Btn.scss will be built using a lot of helpers like text or spacing, but also with some configuration values like border style, size, or radius. In fact, you can showcase all variants and states of this element as in a Storybook.

image

Contact

Author

Jordan Dey

https://bit.ly/m/JordanDey

Issues

https://github.com/Jordan-Dey/Syncss/issues