13 lines
207 B
C
13 lines
207 B
C
![]() |
#ifndef LIGHTNESS_H
|
||
|
#define LIGHTNESS_H
|
||
|
|
||
|
#define LIGHT 0
|
||
|
#define DARK 1
|
||
|
#define LIGHT_RED 217
|
||
|
#define LIGHT_GREEN 157
|
||
|
#define LIGHT_BLUE 147
|
||
|
|
||
|
int lightness(void);
|
||
|
|
||
|
|
||
|
#endif /*LIGHTNESS_H*/
|