<% time_of_day_classes = case World.time_of_day when :firstlight "text-transparent bg-clip-text bg-gradient-to-b from-blue-500 to-yellow-500" when :day "text-yellow-500" when :twilight "text-transparent bg-clip-text bg-gradient-to-b from-purple-500 to-yellow-500" when :night "text-purple-500" else # Should never happen "text-gray-500" end %> <%= Time.current.strftime("%H:%M") %> <%= World.time_of_day.to_s.capitalize %>