Sign in

Brand Guidelines

The Auva brand identity is built on precision, clarity, and warmth. Every product in the ecosystem follows these guidelines to maintain a unified visual language.


Brand Values

ValueExpression
PrecisionClean layouts, sharp typography, intentional spacing
WarmthInviting color palette, approachable tone, subtle animations
ConfidenceBold headlines, decisive UI patterns, no unnecessary clutter
ConsistencyEvery product feels like it belongs to the same family

Color Palette

Primary Colors

NameHexUsage
Background#f8fafcPage backgrounds
Surface#ffffffCards, modals, elevated surfaces
Foreground#0f172aPrimary text, headings
Muted#64748bSecondary text, captions
Border#e2e8f0Dividers, card borders

Accent Colors

NameHexUsage
Accent#2563ebLinks, buttons, interactive elements
Accent Hover#1d4ed8Hover states
Accent Light#dbeafeAccent backgrounds, badges
Accent Dark#1e40afActive states, pressed buttons

Usage Rules


Logo

The Auva logo is the word "Auva" set in Fraunces (semibold, tracking-tight). No icon, no symbol: the wordmark is the brand.

Usage

text
<span class="font-display text-2xl font-semibold tracking-tight">
  Auva
</span>

Rules


Iconography

Auva does not use a custom icon set. We use inline SVGs with consistent properties:

text
<svg
  width="14"
  height="14"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  strokeWidth="2"
  strokeLinecap="round"
  strokeLinejoin="round"
>
  {/* Path data */}
</svg>

Spacing System

Auva uses Tailwind CSS v4's default spacing scale. Key values:

TokenValueUsage
px-624pxPage gutters (mobile)
px-832pxPage gutters (tablet)
lg:px-1248pxPage gutters (desktop)
max-w-[90rem]1440pxMaximum content width
max-w-6xl1152pxContent sections
gap-624pxCard grid gaps

Use CSS custom properties (var(--color-*)) instead of hardcoded values. This ensures all products stay in sync when the design system evolves.