← Back
Natalia Koldaeva · Portfolio

Design
System

v 1.0 4 Foundations Warm Light Palette iOS · Web · Cross-platform WCAG AA / AAA CSS Custom Properties

Four layers of the system.

Each page documents a design decision — how it works, why it was made, and how to use it correctly. Token references throughout link back to `tokens.css`.

Everything lives in tokens.css.

One file drives all 5 pages. Change --c-peach here — the hero, cards, scale rows, and every highlighted token in all four DS pages update automatically.

tokens.css · assets/css/tokens.css ← Portfolio
/* ── CORE PALETTE ─────────────── */
:root {
  --c-white:  #FFFFFF;
  --c-sand:   #EEEDEB;
  --c-peach:  #FFE9D6;
  --c-taupe:  #757263;
  --c-black:  #000000;

  /* ── TYPOGRAPHY ───────────────── */
  --font-display: 'Noto Sans';
  --font-body:    'Poppins';
  --h-weight:    500;    /* H1–H4 */
  --p-weight:    300;    /* P1–P4 */

  /* ── SPACING ──────────────────── */
  --sp-4:   16px;    /* BASE ★ */
  --sp-24:  96px;   /* Section */

  /* ── BUTTONS ──────────────────── */
  --btn-radius:  9999px;  /* Pill */
  --btn-weight:  600;
}
Portfolio

See the system in production.

The portfolio homepage uses every token defined here — the same palette, type scale, spacing, and buttons you've been reading about.

View Portfolio