-2

Hello i need to know 16 basic color ranges one of these RGB or HEX or HSL. I take example as RGB. RGB split in three color mix R-red, G-green B-blue, each of the color have 256 color shades from 0 to 255 so in total is 256*256*256=16777216 colors. I need this 16777216 color split in 16 ranges

rgb(0,0,1)
rgb(0,0,2)
rgb(0,0..)
rgb(0,0,255)

rgb(0,1,0)
rgb(0,1,1)
rgb(0,1,..)
rgb(0,1,255) and etc

enter image description here

user3778390
  • 375
  • 1
  • 6
  • 16
  • Could you expand on `I need this 16777216 color split in 16 ranges`? I just don't understand what you're trying to achieve. – Hashem Qolami Aug 18 '14 at 08:39

1 Answers1

1

You can use this website for this: http://html-color-codes.info/

I use it everytime for colors :D

Simpleacc
  • 90
  • 1
  • 2
  • 9