mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-05-30 22:11:03 +00:00
e77b1a365c
* 2019 * Bump deps
27 lines
790 B
TypeScript
27 lines
790 B
TypeScript
// Copyright 2016 Dan Finlay
|
|
// Copyright 2017-2019 @polkadot/ui-identicon authors & contributors
|
|
// This software may be modified and distributed under the terms
|
|
// of the Apache-2.0 license. See the LICENSE file for details.
|
|
|
|
const COLORS: Array<string> = [
|
|
// '#01888C', // teal
|
|
// '#FC7500', // bright orange
|
|
// '#034F5D', // dark teal
|
|
// '#F73F01', // orangered
|
|
// '#FC1960', // magenta
|
|
// '#C7144C', // raspberry
|
|
// '#F3C100', // goldenrod
|
|
// '#1598F2', // lightning blue
|
|
// '#2465E1', // sail blue
|
|
// '#F19E02' // gold
|
|
// https://sashat.me/2017/01/11/list-of-20-simple-distinct-colors/
|
|
'#ffe119', '#4363d8', '#f58231', '#fabebe', '#e6beff', '#800000', '#000075', '#a9a9a9', '#ffffff', '#000000'
|
|
];
|
|
|
|
const SHAPE_COUNT = 5;
|
|
|
|
export {
|
|
COLORS,
|
|
SHAPE_COUNT
|
|
};
|