Skip to content

Button

Standard User

Available to anyone with page-editing access

Clickable button components using Chaparral brand colors. Copy any snippet below and paste it directly into the Edlio CMS WYSIWYG editor.

<!-- PRIMARY BUTTON (CHAPARRAL — #145f1f) -->
<a href="#" style="display: inline-block; background-color: #145f1f; color: #ffffff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid #145f1f; cursor: pointer;">Primary Button</a>
<!-- SECONDARY BUTTON (CHAPARRAL — #24338a) -->
<a href="#" style="display: inline-block; background-color: #24338a; color: #ffffff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid #24338a; cursor: pointer;">Secondary Button</a>
<!-- ACCENT BUTTON (CHAPARRAL — #f7941d) -->
<a href="#" style="display: inline-block; background-color: #f7941d; color: #1a1a1a; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid rgba(0,0,0,0.2); cursor: pointer;">Accent Button</a>
<!-- OUTLINE BUTTON (CHAPARRAL — #145f1f border) -->
<a href="#" style="display: inline-block; background-color: transparent; color: #145f1f; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: all 0.3s ease; border: 2px solid #145f1f; cursor: pointer;">Outline Button</a>
<!-- BUTTON GROUP (CHAPARRAL) -->
<div style="display: flex; gap: 12px; flex-wrap: wrap; align-items: center;">
<a href="#" style="display: inline-block; background-color: #145f1f; color: #ffffff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid #145f1f; cursor: pointer;">Primary</a>
<a href="#" style="display: inline-block; background-color: transparent; color: #145f1f; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: all 0.3s ease; border: 2px solid #145f1f; cursor: pointer;">Learn More</a>
</div>