parse method
Main entry point for parsing an entire CSS file.
Implementation
CSSStyleSheet parse({double? windowWidth, double? windowHeight, bool? isDarkMode}) {
final rules = parseRules(windowWidth: windowWidth, windowHeight: windowHeight, isDarkMode: isDarkMode);
return CSSStyleSheet(rules);
}