mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
494550d38d
* [ThemeParser] Add css color names * Add CSS color support (WIP) * Parse color names in the lexer. * Add test for css color names * Indent and fix ordering
12 lines
266 B
C
12 lines
266 B
C
#ifndef ROFI_INCLUDE_CSS_COLORS_H
|
|
#define ROFI_INCLUDE_CSS_COLORS_H
|
|
|
|
typedef struct CSSColor
|
|
{
|
|
char *name;
|
|
uint8_t b, g, r, a;
|
|
}CSSColor;
|
|
|
|
extern const CSSColor CSSColors[];
|
|
extern const unsigned int num_CSSColors;
|
|
#endif // ROFI_INCLUDE_CSS_COLORS_H
|