Load CSS theme from asset file
static Future<CssTheme> fromAsset(String assetPath) async { final cssContent = await rootBundle.loadString(assetPath); return fromString(cssContent); }