rofi  1.5.1
css-colors.h
Go to the documentation of this file.
1 #ifndef ROFI_INCLUDE_CSS_COLORS_H
2 #define ROFI_INCLUDE_CSS_COLORS_H
3 
4 typedef struct CSSColor
5 {
6  char *name;
7  uint8_t b, g, r, a;
8 }CSSColor;
9 
10 extern const CSSColor CSSColors[];
11 extern const unsigned int num_CSSColors;
12 #endif // ROFI_INCLUDE_CSS_COLORS_H
const CSSColor CSSColors[]
Definition: css-colors.c:3
uint8_t r
Definition: css-colors.h:7
uint8_t b
Definition: css-colors.h:7
const unsigned int num_CSSColors
Definition: css-colors.c:154
struct CSSColor CSSColor
uint8_t a
Definition: css-colors.h:7
char * name
Definition: css-colors.h:6
uint8_t g
Definition: css-colors.h:7