Skip to content

Button

Standard User

Available to anyone with page-editing access

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

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