Skip to content

Suite of color combinations for using in your projects

License

Notifications You must be signed in to change notification settings

akgondber/coloreme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

coloreme NPM version

Suite of color combinations for using in your projects

Install

npm install coloreme

or

yarn add coloreme

Usage

import { coloreme, coloremeList, colors } from 'coloreme';

console.log(coloreme.LightBlueCobalt);
/*
{
  name: 'LightBlueCobalt',
  color: '#CADCFC',
  bgColor: '#00246B',
  c: '#CADCFC',
  b: '#00246B',
  inverse: { color: '#00246B', bgColor: '#CADCFC', c: '#00246B', b: '#CADCFC' }
}
*/
/* Same as above */
console.log(colors.obj.BluePastelPink);

/* Get some pair by index from list */
console.log(coloremeList[11]);
/*
{
  name: 'BlondeYellowCandyPink',
  color: '#F9EC7E',
  bgColor: '#E26274',
  c: '#F9EC7E',
  b: '#E26274',
  inverse: { color: '#E26274', bgColor: '#F9EC7E', c: '#E26274', b: '#F9EC7E' }
}
*/
/* Previous analogue */
console.log(colors.list[11]);

console.log(colors.random()); // get random color pair

Screenshots

Screenshot

Screenshot2

License

MIT © Rushan Alyautdinov

About

Suite of color combinations for using in your projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published