0.2.0 • Published 2 months ago

syncss v0.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

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:

KeyMultiplesValue
000px
115px
2210px
3315px
4420px
5630px
61050px
720100px
840200px

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

0.2.0

2 months ago

0.1.6

2 months ago

0.1.5

2 months ago

0.1.4

2 months ago

0.1.3

2 months ago

0.1.2

3 months ago

0.1.1

3 months ago

0.1.0

3 months ago