This commit is contained in:
Miloslav Ciz 2023-07-25 20:55:42 +02:00
parent e267fff78e
commit e105277181
14 changed files with 60 additions and 14 deletions

5
rgb565.md Normal file
View file

@ -0,0 +1,5 @@
# RGB565
RGB565 is a way of representing a total of 65536 [colors](color.md) in just 2 [bytes](byte.md), i.e. 16 [bits](bit.md), by using 5 bits (highest) for red, 6 bits for green (to which human eye is most sensitive) and 5 bits for blue; it can also be seen as a color [palette](palette.md).
TODO