ArthurSonzogni / rgb-tui

Create and get colors code from the terminal using a nice interface.
MIT License
83 stars 6 forks source link

fix hex alphabet from 0-9A-G to 0-9A-F (#4) #5

Closed ardnew closed 2 years ago

ardnew commented 2 years ago

Fixes the off-by-one bug in HexLetter described in #4.

Using hex notation 0xA instead of 10 for symmetry with the wide char literal U'A'.

ArthurSonzogni commented 2 years ago

Wow, thanks!