-- ================ -- Initialization -- ================ moonlightUI = moonlightUI or {} mUI = moonlightUI mUI.comms = mUI.comms or {} -- ======================== -- Communication Settings -- ======================== color_table.muiRed = {255,0,0} color_table.muiDarkRed = {159,0,0} color_table.muiBlue = {95,95,255} color_table.muiDarkBlue = {31,31,159} color_table.muiGray = {63,63,63} color_table.muiPurple = {255,0,255} color_table.muiDarkPurple = {95,0,95} mUI.comms.channels = { ["tells"] = "Tells", ["says"] = "All", ["Party"] = "Party", ["gt"] = "Party", ["Hashan"] = "City", ["Krymenian"] = "House", ["Krymenian novices"] = "House", ["Krymenian secret"] = "House", ["Order of Ourania"] = "Order", } mUI.comms.colors = { ["tells"] = {"yellow"}, ["says"] = {"cyan"}, ["Party"] = {"white", "muiGray"}, ["gt"] = {"white", "muiGray"}, ["Hashan"] = {"white"}, ["Krymenian"] = {"white", "muiDarkBlue"}, ["Krymenian novices"] = {"muiBlue"}, ["Krymenian secret"] = {"yellow", "muiDarkBlue"}, ["Order of Ourania"] = {"white", "muiDarkRed"}, }