summaryrefslogtreecommitdiff
path: root/src/color.hh
blob: 61a57153625243f38213e62401f5e098ee5578af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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