defmodule Customizations.Subbar do def pick_outfit(:active_item) do %{ class: "flex items-center text-xs text-piccolo rounded-md bg-piccolo/10 gap-x-1 py-1 pl-1 pr-2", icon: %{ image: "hero-document-text", class: "-scale-y-[1] h-4 w-4" } } end def pick_outfit(:item) do %{ class: "text-xs rounded-md py-1 pl-1 pr-2", anchor: "flex gap-x-1 items-center", icon: %{ image: "hero-document-text", class: "-scale-y-[1] h-4 w-4" } } end def pick_outfit(:subsection) do %{ class: "flex gap-1 text-xs text-stone-400 items-center mb-1", icon: %{ image: "hero-chevron-down", class: "w-3 h-3" }, subclass: "flex flex-col gap-2 w-full" } end def pick_outfit(:list) do %{class: "flex justify-start items-center py-4 flex-col w-full h-full lg:rounded-s-lg gap-2 bg-goku" } end end