+ iconColor = {
+ type = "color",
+ name = "Icon tint",
+ get = function(item)
+ return unpack(self.db.profile[pos]["iconColor"]);
+ end,
+ set = function(item, r, g, b, a)
+ self.db.profile[pos]["iconColor"] = {r, g, b, a};
+ self:RefreshConfig();
+ end,
+ },