private static ThemeData CreateDefaultThemeData(string themeName) { ThemeData themeData = new ThemeData { name = themeName, baseLibraryCssReferences = Array.Empty <string>() }; return(themeData); }
public static string[] GetThemeCssReferencedFiles(string themeName) { ThemeData themeData = GetThemeData(themeName); return(themeData.baseLibraryCssReferences); }