#ifndef _COLOR_H
#define _COLOR_H

#define color(c) GetPaletteAdrByColorIndex(c)

#define clWhite	0
#define clBlack	1
#define clRed	2
#define clBlue	3
#define clGreen	4
#define clMagenta	5
#define clCyan	6
#define clYellow	7

#define clDarkGrey	20
#define clGrey	21
#define clLightGrey	22

// cl-mod
#define clLight	6
#define clDark	12

#define MAX_COLOR       22
#define AdjustColor(c)    Adjust(c,MAX_COLOR)
#define AdjustColorCyc(c) AdjustCyc(c,MAX_COLOR)

#endif
