Skip to content

gurov/yandex-colors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yandex-color

Yandex colors in a single array, which includes: HEX encoding, English and Russian color names.

The list of color you can see here.

Install

npm install yandex-colors

Using

index.ts

import {colors} from 'yandex-colors';
console.log(colors.slice(0, 3));

terminal

$ npx ts-node index.ts
[ { hex: '000000', ru: 'Черный', en: 'Black' },
  { hex: '000080', ru: 'Темно-синий', en: 'Navy blue' },
  { hex: '0000ff', ru: 'Синий', en: 'Blue' } ]