Skip to content

Instantly share code, notes, and snippets.

@yahyaKacem
Created December 9, 2017 14:34
Show Gist options
  • Save yahyaKacem/5c61c726947bb9a3acef82704675d033 to your computer and use it in GitHub Desktop.
Save yahyaKacem/5c61c726947bb9a3acef82704675d033 to your computer and use it in GitHub Desktop.
list all hex colors with lodash
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