Theme Colors

This section provides a quick references for what each avialable theme color.


ColorNameClassDescription
Primary [x]-primary-[50-900] Typically your primary brand color.
Accent [x]-accent-[50-900] A secondary offset color or supplementary value.
Tertiary [x]-tertiary-[50-900] A third and additional offset color. Great for informational alerts.
Warning [x]-warning-[50-900] May be used for warnings, alerts, and invalid inputs.
Surface [x]-surface-[50-900] May be used for backgrounds, card elements, and some typography.

Usage

Skeleton themes extend Tailwind's color palette and can be used anywhere within your project. Here's a few examples:

html
<!-- Inlined classes -->
<div class="bg-primary-500 text-accent-500">Skeleton</div>
html
<!-- Tailwind opacity scale -->
<div class="border border-primary-500/50">Skeleton</div>
css
/* Using Tailwind @apply */
.example { @apply text-primary-500; }
css
/* Using CSS custom properties. Note that colors are RGB values! */
body { background: rgba(var(--color-surface-900) / 1); }