/* 
* Colors with meanings built into the core.
*/

// TOP

enum Style_Tag{
    Stag_NOOP = 0,
    
    Stag_Bar = 1,
    Stag_Base = 2,
    Stag_Pop1 = 3,
    Stag_Pop2 = 4,
    Stag_Back = 5,
    Stag_Margin = 6,
    Stag_Margin_Hover = 7,
    Stag_Margin_Active = 8,
    Stag_List_Item = 9,
    Stag_List_Item_Hover = 10,
    Stag_List_Item_Active = 11,
    Stag_Cursor = 12,
    Stag_At_Cursor = 13,
    Stag_Highlight_Cursor_Line = 14,
    Stag_Highlight = 15,
    Stag_At_Highlight = 16,
    Stag_Mark = 17,
    Stag_Default = 18,
    Stag_Comment = 19,
    Stag_Keyword = 20,
    Stag_Str_Constant = 21,
    Stag_Char_Constant = 22,
    Stag_Int_Constant = 23,
    Stag_Float_Constant = 24,
    Stag_Bool_Constant = 25,
    Stag_Preproc = 26,
    Stag_Include = 27,
    Stag_Special_Character = 28,
    Stag_Ghost_Character = 29,
    Stag_Highlight_Junk = 30,
    Stag_Highlight_White = 31,
    Stag_Paste = 32,
    Stag_Undo = 33,
    Stag_Back_Cycle_1 = 34,
    Stag_Back_Cycle_2 = 35,
    Stag_Back_Cycle_3 = 36,
    Stag_Back_Cycle_4 = 37,
    Stag_Text_Cycle_1 = 38,
    Stag_Text_Cycle_2 = 39,
    Stag_Text_Cycle_3 = 40,
    Stag_Text_Cycle_4 = 41,
    Stag_Line_Numbers_Back = 42,
    Stag_Line_Numbers_Text = 43,
    Stag_COUNT = 44
};

#define FirstCustomColor Stag_COUNT

// BOTTOM