module ProjectsHelper
  def random_abstract_image
    Unsplash.random_image
  end

  def random_sprint_color
    colors = ["#F44174", "#6153CC", "#E75121"]
    colors.sample
  end
end
