1.0.0-beta.1 • Published 6 years ago

siimple-colors v1.0.0-beta.1

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

siimple-colors

npm npm devDependency Status npm

siimple-colors is an elegant and minimalistic color palette for UI design.

Getting started

siimple-colors can be installed using npm:

$ npm install --save siimple-colors

Or imported in your HTML files using a CDN.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/siimple-colors@1.0.0-beta.1/dist/siimple-colors.min.css">

Documentation

We are working on a new documentation for v1.0.0.

Examples

Using CSS variables:

.red-text {
    color: var(--siimple-red);
}

.blue-text {
    color: var(--siimple-blue-light);
}

.green-bg {
    background-color: var(--siimple-green-dark);
}

Using CSS selectors

<span class="siimple--color-red">Text with red color</span>
<span class="siimple--bg-blue-dark siimple--color-white">White text with dark blue color</span>

Using SASS/SCSS

@import "siimple-colors/scss/_all.scss";

.red-text {
    color: siimple-color("red");
}

.blue-text {
    color: siimple-color-light("blue");
}

.green-bg {
    background-color: $siimple-green-dark;
}

License

MIT LICENSE © The siimple team.

1.0.0-beta.1

6 years ago

1.0.0-beta

6 years ago

0.2.0

6 years ago

0.1.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago