Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lokesh-coder/Flat-Colors
Over 2K of colors for your next project
https://github.com/lokesh-coder/Flat-Colors
colors flat flat-colors
Last synced: 2 months ago
JSON representation
Over 2K of colors for your next project
- Host: GitHub
- URL: https://github.com/lokesh-coder/Flat-Colors
- Owner: lokesh-coder
- License: mit
- Created: 2016-02-09T15:49:15.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-12T17:15:12.000Z (about 6 years ago)
- Last Synced: 2024-10-30T05:34:34.916Z (2 months ago)
- Topics: colors, flat, flat-colors
- Language: JavaScript
- Size: 1.35 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- my-awesome-list - Flat-Colors - coder | 4 | (JavaScript)
README
Flat UI Colors
===================Hand picked **2109** Flat colors for your next project.
#### Install
```
$ npm install --save flat-ui-colors
$ npm install --global flat-ui-colors // for cli
```#### Usage
```javascript
var flatUiColors = require('flat-ui-colors').default; //or
import flatUiColors from 'flat-ui-colors'; //for es6 modules//list all colors
flatUiColors.get.all();//list random color
flatUiColors.get.one(); // returns one color//list random number of colors
flatUiColors.get.many(5); //returns 5 colors//export colors to a nice looking html page :)
flatUiColors.export.html(); // or with a filename
flatUiColors.export.html('filename');// get collection of colors
flatUiColors.collection.all();// get individual color collection
// supported colors: blue, red, pink, purle, green, yellow, orange, gray
flatUiColors.collection.get('blue');```
#### CLI usage
```shell
//list all colors
$ flatc -a//list random color
$ flatc -o//list random number of colors
$ flatc -m 22// colorname: blue, red, pink, purle, green, yellow, orange, gray
$ flatc -c//export as html
$ flatc -h
```
#### Example![Image of Falt Colors](example.png)