Lines Matching refs:colors
3 …tions like changing color depth, creating colors from hex code, converting between color depths, m…
7 …colors. You may need this when sending 16-bit colors via a byte-oriented interface like SPI. As 16…
9 ## Creating colors
12 Create colors from Red, Green and Blue channel values:
25 Create colors from Hue, Saturation and Value values:
40 …s palette](https://vuetifyjs.com/en/styles/colors/#material-colors) of colors. In this system all …
42 The names of the colors are as follows:
69 ### Modify and mix colors argument
82 // Mix two colors with a given ratio 0: full c2, 255: full c1, 128: half c1 and half c2
86 ### Built-in colors argument
105 - `lv_color8_t` A structure to store R (3 bit),G (3 bit),B (2 bit) components for 8-bit colors (1 b…
106 - `lv_color16_t` A structure to store R (5 bit),G (6 bit),B (5 bit) components for 16-bit colors (2…
107 - `lv_color32_t` A structure to store R (8 bit),G (8 bit), B (8 bit) components for 24-bit colors (…
132 c1.full = lv_color_to1(c); /*Return 1 for light colors, 0 for dark colors*/