Colors
Skeleton themes extend Tailwind's color palette and can be used anywhere within your project.
| Color | ID | Example |
|---|---|---|
| [style]-primary-[50-900] | Typically your primary brand color. | |
| [style]-secondary-[50-900] | A secondary branding color for supplementary value. | |
| [style]-tertiary-[50-900] | A third and additional branding color. | |
| [style]-success-[50-900] | Used for successful or positive actions, such as a form submit alert. | |
| [style]-warning-[50-900] | Used for negative or harmful actions, such as warnings. | |
| [style]-error-[50-900] | May be used for errors, alerts, and invalid inputs. | |
| [style]-surface-[50-900] | The base level colors, used for backgrounds. |
Usage
<!-- Inlined classes -->
<div class="bg-primary-500 text-secondary-500">Skeleton</div><!-- Tailwind opacity scale -->
<div class="border border-primary-500/50">Skeleton</div>/* Using Tailwind @apply */
.example { @apply text-primary-500; }/* Using CSS custom properties. Note that colors are RGB values! */
body { background: rgba(var(--color-surface-900) / 1); }