getCategoryStyle function
Implementation
Style getCategoryStyle(String category, String name) {
return _categoryStyleCache.putIfAbsent(name, () {
int h = fnv1aHash(name).abs() % 360;
return Style(foreground: hslToRgb(h.toDouble(), 0.75, 0.60));
});
}