public static void Main()
dynamic content = new ExpandoObject();
content.Color = new { Label = "Dusty Beige" };
var gradientColor = content.Color?.Label switch
"Dusty Beige" => "from-beige-100",
"Dusty Blue" => "from-blue-100",
"Dusty Green" => "from-green-100",
"Dusty Red" => "from-red-100",
Console.WriteLine(gradientColor);