Skip to content

Button

Standard User

Available to anyone with page-editing access

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

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