1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-19 09:21:30 +03:00
kakoune/src/color.hh

24 lines
235 B
C++
Raw Normal View History

#ifndef color_hh_INCLUDED
#define color_hh_INCLUDED
namespace Kakoune
{
2012-10-24 00:43:12 +04:00
enum class Color : char
{
Default,
Black,
Red,
Green,
Yellow,
Blue,
Magenta,
Cyan,
White
};
}
#endif // color_hh_INCLUDED