Employers

<% plan_colors = EmployerSetupPlansForm::PLAN_COLORS.push('copper', 'bronze').shuffle %>

In Process:

<% @employers.inactive.each_with_index do |es, index| %> <% item_color_index = index == 0 ? 0 : index % plan_colors.length %>
"> <%= link_to es.name, employer_path(es.slug), class: "hover:text-atmosphere" %>
<% end %>
<%= link_to "New Employer", new_employer_path, class: "hover:text-verdigris" %>

Live:

<% @employers.active.each_with_index do |es, index| %> <% item_color_index = index == 0 ? 0 : index % plan_colors.length %>
"> <%= link_to es.name, employer_path(es.slug), class: "hover:text-atmosphere" %>
<% end %>