mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-21 23:47:58 +00:00
d1cd13072f
- Updated all package references - Fixed react-identicon and related packages - Version 3.16.8
12 lines
410 B
TypeScript
12 lines
410 B
TypeScript
// Copyright 2017-2025 @pezkuwi/ui-shared authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Copyright 2016 Dan Finlay
|
|
|
|
export const COLORS: readonly string[] = [
|
|
// https://sashat.me/2017/01/11/list-of-20-simple-distinct-colors/
|
|
'#ffe119', '#4363d8', '#f58231', '#fabebe', '#e6beff', '#800000', '#000075', '#a9a9a9', '#ffffff', '#000000'
|
|
] as const;
|
|
|
|
export const SHAPE_COUNT = 5 as const;
|