All Projects → alex7kom → golden-colors

alex7kom / golden-colors

Licence: other
Generate random colors using Golden ratio conjugate

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to golden-colors

Randomcolor
Javascript module for generating random, distinguishable, pleasing colors (ie: for chart series).
Stars: ✭ 83 (+418.75%)
Mutual labels:  random, colors
random color
⚙️🎨 Rust crate for generating random attractive colors
Stars: ✭ 30 (+87.5%)
Mutual labels:  random, colors
faker
Random fake data and struct generator for Go.
Stars: ✭ 67 (+318.75%)
Mutual labels:  random
nvim-highlite
A colorscheme template that is "lite" on logic for the developer.
Stars: ✭ 163 (+918.75%)
Mutual labels:  colors
md-colors
Material design color palettes as an npm package
Stars: ✭ 12 (-25%)
Mutual labels:  colors
prvhash
PRVHASH - Pseudo-Random-Value Hash. Hash functions, PRNG with unlimited period, randomness extractor. (Codename Gradilac/Градилак)
Stars: ✭ 194 (+1112.5%)
Mutual labels:  random
Crayons.jl
Colored and styled strings for terminals.
Stars: ✭ 115 (+618.75%)
Mutual labels:  colors
clrprint
Print colorful output in the terminal, idle, cmd, and Windows PowerShell using the same functions.
Stars: ✭ 22 (+37.5%)
Mutual labels:  colors
RandLib
🚀 A library designed to facilitate work with probability, statistics and stochastic calculus
Stars: ✭ 64 (+300%)
Mutual labels:  random
Foodish
A Node.js/Express.js REST API to GET a random picture of food dishes.
Stars: ✭ 55 (+243.75%)
Mutual labels:  random
color-math
Expressions to manipulate colors.
Stars: ✭ 18 (+12.5%)
Mutual labels:  colors
sourcerer
read code like a wizard. a 16bit color scheme for hackers
Stars: ✭ 136 (+750%)
Mutual labels:  colors
leeks.js
Simple ANSI styling for your terminal
Stars: ✭ 12 (-25%)
Mutual labels:  colors
oof
Convenient, high-performance RGB color and position control for console output
Stars: ✭ 764 (+4675%)
Mutual labels:  colors
coloraide
A library to aid in using colors
Stars: ✭ 53 (+231.25%)
Mutual labels:  colors
random
This is all my random garbage.
Stars: ✭ 23 (+43.75%)
Mutual labels:  random
pikko
Color picker for iOS made with ❤️
Stars: ✭ 34 (+112.5%)
Mutual labels:  colors
colorgrab
A cross-platform color picker
Stars: ✭ 80 (+400%)
Mutual labels:  colors
rocRAND
RAND library for HIP programming language
Stars: ✭ 68 (+325%)
Mutual labels:  random
flutter fortune wheel
Visualize random selections with Flutter widgets like the wheel of fortune.
Stars: ✭ 60 (+275%)
Mutual labels:  random

This package is deprecated. Since HSL is widely supported now, please consider using golden-number which is more lightweight and versatile.

golden-colors

Random color generation for JavaScript and Node.js based on How To Generate Random Colors Programmatically by Martin Ankerl. Colors generated using Golden ratio conjugate can be used as background colors for easily readable labels, buttons, etc.

Installation

Download the latest version from Github or use npm or Bower:

npm install golden-colors

Then just include dist/golden-colors.js or dist/golden-colors.min.js in your html. AMD-version of the library that also supports Browserify also available as dist/golden-colors-amd.js/dist/golden-colors-amd.min.js.

and require it in your code:

var goldenColors = require('golden-colors');

API

goldenColors

There are three functions for color generation. All three functions return an instance of WebColor.

getHsvGolden(s, v)

Random color in HSV system with random value for hue set at startup and distributed using Golden ratio conjugate with specified saturation and value.

getHsvSimple(s, v)

Random color in HSV system with random values for hue with specified saturation and value.

getNaive()

Just random values for R, G, B.

WebColor

An object with R, G, and B values that can be converted into CSS2-compatible string.

toRgb()

Returns an Array of [r, g, b] with decimal values.

toRgbString()

Returns a String of rgb(r, g, b) with decimal values.

toHexString()

toString()

toJSON()

Returns a String of #rgb with hexadecimal values.

License

The MIT License (MIT)

Copyright (c) 2014-2015 Alexey Komarov [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].