static int? maybeColor(String? colorCode) { if (colorCode == null) return null; return fromCssColor(colorCode); }