kakoune/src/color.hh
2012-10-23 22:53:56 +02:00

24 lines
235 B
C++

#ifndef color_hh_INCLUDED
#define color_hh_INCLUDED
namespace Kakoune
{
enum class Color : char
{
Default,
Black,
Red,
Green,
Yellow,
Blue,
Magenta,
Cyan,
White
};
}
#endif // color_hh_INCLUDED