Skip to content

Button

Standard User

Available to anyone with page-editing access

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

<!-- PRIMARY BUTTON (CANYON VIEW — #EE212E) -->
<a href="#" style="display: inline-block; background-color: #EE212E; 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 #EE212E; cursor: pointer;">Primary Button</a>
<!-- SECONDARY BUTTON (CANYON VIEW — #FFFEF9) -->
<a href="#" style="display: inline-block; background-color: #FFFEF9; 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;">Secondary Button</a>
<!-- ACCENT BUTTON (CANYON VIEW — #443548) -->
<a href="#" style="display: inline-block; background-color: #443548; 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 #443548; cursor: pointer;">Accent Button</a>
<!-- OUTLINE BUTTON (CANYON VIEW — #EE212E border) -->
<a href="#" style="display: inline-block; background-color: transparent; color: #EE212E; 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 #EE212E; cursor: pointer;">Outline Button</a>
<!-- BUTTON GROUP (CANYON VIEW) -->
<div style="display: flex; gap: 12px; flex-wrap: wrap; align-items: center;">
<a href="#" style="display: inline-block; background-color: #EE212E; 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 #EE212E; cursor: pointer;">Primary</a>
<a href="#" style="display: inline-block; background-color: transparent; color: #EE212E; 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 #EE212E; cursor: pointer;">Learn More</a>
</div>