how to make an enum in c++

Creating an Enum in C++

enum Color {
    RED,
    GREEN,
    BLUE
};