Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thedevsbuddy/colorspal
Provides a wide variety of colors with 9 shades of each to help you writing front-end code easily.
https://github.com/thedevsbuddy/colorspal
bootstrap-colors bootstrap4 colors colorscheme colorspallate pallate
Last synced: 28 days ago
JSON representation
Provides a wide variety of colors with 9 shades of each to help you writing front-end code easily.
- Host: GitHub
- URL: https://github.com/thedevsbuddy/colorspal
- Owner: thedevsbuddy
- Created: 2020-10-11T16:51:48.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-07T07:00:05.000Z (over 2 years ago)
- Last Synced: 2024-10-04T15:39:34.222Z (about 1 month ago)
- Topics: bootstrap-colors, bootstrap4, colors, colorscheme, colorspallate, pallate
- Language: SCSS
- Homepage: https://www.devsbuddy.com/libs/colorspal/
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ColorsPal
A library by DevsBuddy
Provides a wide variety of colors with 9 shades of each to help you writing frontend code easily.
Explore ColorsPal docs »
# ColorsPal 1.2
## Quick start
Several quick start options are available:- [Download the latest release](https://github.com/devs-buddy/colorspal/archive/v1.2.20.zip)
- Install with [npm](https://www.npmjs.com/): `npm i colorspal`## What's included
Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations also source files to modify and include in your own custom project files. You'll see something like this:
```text
colorspal/
├── dist/
│ ├── colorspal.css
│ ├── colorspal.css.map
│ ├── colorspal.min.css
│ ├── colorspal.min.css.map
└── scss/
│ ├── components/
│ │ ├── _background-colors.scss
│ │ ├── _root.scss
│ │ ├── _text-colors.scss
│ ├── inc/
│ │ ├── _functions.scss
│ │ ├── _variables.scss
└── colorspal.scss
```We provide compiled CSS (`colorspal.css`), as well as compiled and minified CSS (`colorspal.min.css`).
## Documentation
**Installation**
```bash
npm i colorspal
```Then in your `style.scss` file
```scss
@import "../node_modules/colorspal/scss/colorspal";
```Alternatively you can use our CDN
```html```
**More Details:**
Please follow our official documentation for more depth information and example codes.
ColorsPal docs »## Copyright and license
Code and documentation copyright 2020 the [DevsBuddy](https://devsbuddy.com). Code released under the MIT License. Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).