blob: 738d0aec557cb834848755f6b8c52620885a240a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef COLOR_H
#define COLOR_H
void color_init (void);
/* Return the pixel value for the given red, green and blue */
int color_alloc (gushort red, gushort green, gushort blue);
void color_alloc_name (char *name, GdkColor *color);
void color_alloc_gdk (GdkColor *color);
/* Colors used by any GnumericSheet item */
extern GdkColor gs_white, gs_light_gray, gs_dark_gray, gs_black;
#endif
|