24 lines
228 B
C++
24 lines
228 B
C++
|
#ifndef color_hh_INCLUDED
|
||
|
#define color_hh_INCLUDED
|
||
|
|
||
|
namespace Kakoune
|
||
|
{
|
||
|
|
||
|
enum class Color
|
||
|
{
|
||
|
Default,
|
||
|
Black,
|
||
|
Red,
|
||
|
Green,
|
||
|
Yellow,
|
||
|
Blue,
|
||
|
Magenta,
|
||
|
Cyan,
|
||
|
White
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // color_hh_INCLUDED
|
||
|
|