# Primary Buttons

Primary buttons are U Red by default and can be used in 4 different sizes: small.sm, regular(default), large.lg and extra-large.xl.

Example Markup

  <a href="/path/to/page" class="btn sm">Button Text</a>
  <a href="/path/to/page" class="btn">Button Text</a>
  <a href="/path/to/page" class="btn lg">Button Text</a>
  <a href="/path/to/page" class="btn xl">Button Text</a>
        

# Button Colors

In addition to the default U Red button, you can also choose between 3 other alternate colors to fit your UI needs; .black, .gray and .white.

Example Markup

  <a href="/path/to/page" class="btn black">Button Text</a>
  <a href="/path/to/page" class="btn gray">Button Text</a>
  <a href="/path/to/page" class="btn white">Button Text</a>
        

# Outline Buttons

Used primarily a secondary buttons, the outline button can be used to soften the visual weight of priority buttons. .outline(red), .outline .black, .outline .gray and .outline .white(not shown).

Example Markup

  <a href="/path/to/page" class="btn outline">Button Text</a>
  <a href="/path/to/page" class="btn outline black">Button Text</a>
  <a href="/path/to/page" class="btn outline gray">Button Text</a>
      

# Full-Width Buttons

Generally used sparingly and only in tight spaces. Full-width buttons .full will stretch the entire width of the parent container and can be used in any size and color.

It is good practice to only use full-width buttons within a confined width and should not exceed the supporting text.

Example Markup

  <a href="/path/to/page" class="btn full">Button Text</a>
  <a href="/path/to/page" class="btn outline black full">Button Text</a>