Chip

A chip is a small inline label: a tag, a filter, a badge. Static ones are a span; interactive ones are a button or an a. They wrap in a flow.

<span class="chip">default</span>
<span class="chip accent">accent</span>
<button class="chip">filter</button>
Chips at a glance

Colors

A plain chip is neutral. Add accent or teal to color it.

default accent teal
<span class="chip">default</span>
<span class="chip accent">accent</span>
<span class="chip teal">teal</span>
A neutral chip and the accent and teal variants

Interactive

Make a chip interactive by using a button for a filter or an a for a tag. They sit in the same flow as static chips.

a tag
<button class="chip">filter</button>
<a class="chip" href="#">a tag</a>
A button filter and a link tag as chips