Byakuren 1.0.1
A theme color extracting library implemented by C.
|
RGB color structure. More...
#include <bkr_common.h>
Data Fields | |
uint8_t | red |
Red component of the color (0-255) | |
uint8_t | green |
Green component of the color (0-255) | |
uint8_t | blue |
Blue component of the color (0-255) | |
RGB color structure.
This structure represents a color in the RGB color space. Each component (red, green, blue) is an 8-bit unsigned integer, allowing for 256 levels of intensity for each color channel.
Definition at line 90 of file bkr_common.h.
uint8_t bkr_rgb::blue |
Blue component of the color (0-255)
Definition at line 93 of file bkr_common.h.
uint8_t bkr_rgb::green |
Green component of the color (0-255)
Definition at line 92 of file bkr_common.h.
uint8_t bkr_rgb::red |
Red component of the color (0-255)
Definition at line 91 of file bkr_common.h.