private void addThemeProviders(final Map<String, ITheme> themes) {
   for (final ThemeProvider provider : THEME_PROVIDERS) {
     for (final ITheme theme : provider.available()) {
       themes.put(theme.name(), theme);
     }
   }
 }
 private void addThemes(final Map<String, ITheme> themes) {
   for (final ITheme theme : THEMES) {
     themes.put(theme.name(), theme);
   }
 }