/**
  * Get all themes
  *
  * @return ThemePackage[]
  */
 public function getThemes()
 {
     $themes = [];
     foreach ($this->componentRegistrar->getPaths(ComponentRegistrar::THEME) as $key => $path) {
         $themes[$key] = $this->factory->create($key, $path);
     }
     return $themes;
 }