Created
December 9, 2017 14:34
-
-
Save yahyaKacem/5c61c726947bb9a3acef82704675d033 to your computer and use it in GitHub Desktop.
list all hex colors with lodash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ALL_HEX_COLORS_LIST: string[] = lodash.range(0, 16777216).map((n: number): string => lodash.padStart(n.toString(16), 6, '0')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment