thomaslindstrom / color-picker

A color picker for the Atom Editor. Right click a color and select color picker to open it.
MIT License
246 stars 50 forks source link

RGB565 support #225

Open Zaltora opened 7 years ago

Zaltora commented 7 years ago

Can be implemented RGB565 color ? exemple:

RGB888: 0x64646 RGB565: 0x632C

macro C example :#define RGB2COLOR(r, g, b) ((((r>>3)<<11) | ((g>>2)<<5) | (b>>3))) i found online converter : converter

and the possibility to see color in atom ? regards