void addColorToJson(Map<String, dynamic> json, String name, Color? color) { if(color != null) { json.putIfAbsent(name, () => colorToHex(color)); } }