function update_data()
 {
     // Updating remote values
     liveui::update_data();
 }
 private static function init_colors($loopCheck = false)
 {
     if (!self::$colors) {
         self::$colors = self::get_cache('colors');
         if (!self::$colors && !$loopCheck) {
             self::update_data();
             self::init_colors(true);
         }
     }
 }