Insights Channel · Brand Application Guide

The Insights
Brand Guide

Version 1.0 January 2026 Internal Reference

01 — Identity

Brand Identity Overview

The Insights channel represents a sophisticated, editorial approach to systems thinking. The visual language is defined by a warm, paper-like background, stark black typography, and precise architectural color accents.

Color Palette

Warm Cream #F5F3F0 Backgrounds only
Deep Black #1A1A1A All typography
Coral Red #FF6B6B Tags, accents
Mint Teal #4ECDC4 Hyperlinks only
Light Blue #A8DADC Box BG (black text)
Medium Gray #666666 Metadata only

Typography Hierarchy

Display — Playfair Display Black · 48–88px · #000000

Headline Display

Section Header — Playfair Display Bold · 24–32px · #000000

Section Header Style

Body Copy — Lora Regular · 18–20px · #1A1A1A · Line-height 1.7

This is the standard body copy. It is set in Lora, a contemporary serif that provides excellent readability. The color is always black to maintain high contrast against the cream background.

Category Label — Lato Bold · Uppercase · 12–14px · Coral

Building Series · Strategy

Metadata — Lato Regular · 13px · #666666

By Luis Gilberto · January 2026 · 5 min read

02 — Article Headers

Article Header Templates

Consistent headers anchor every article in the Insights visual system. Two variants are defined — the standard article header and the contextual sidebar box.

A) Standard Article Header

Live Preview — Article Header
Strategy · Building Series

Building The Ecosystem

CSS Specification
.article-header {
  background-color: #F5F3F0;  /* Cream */
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.category-tags {
  color: #FF6B6B;             /* Coral — tags only */
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
h1 {
  color: #000000;             /* True black */
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
}
.meta {
  color: #666666;             /* Gray — metadata only */
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}

B) Sidebar Box (Contextual)

Used within article layouts for "Current Status" or "Key Takeaways". Text must always be black — even on the light blue background.

Live Preview — Sidebar Box
Current Status

The portal is currently in beta. All systems are operational, but access is restricted to early strategy partners.

CSS Specification
.sidebar-box {
  background-color: #A8DADC; /* Light Blue */
  color: #000000;             /* FORCE BLACK TEXT — critical */
  padding: 32px;
  border-radius: 2px;
}

03 — Social Media

Social Media Templates

Every social touchpoint should feel like a cropped page from the channel itself. Bold typography, cream space, illustrations at center.

A) Instagram Post (1080×1080)

1:1 Composition Guide
New Insight
The Pivot to Productization.
Isometric Illustration
luis-gilberto.com/insights

Rules for 1:1 format: Cream background only · Text in true black · Coral for category eyebrow · Center illustration in lower 50% · URL in Lato 9pt at bottom

B) Instagram Story (1080×1920)

  • Background — #F5F3F0 (Cream)
  • Text — Black only, no exceptions
  • Accent — Use Coral (#FF6B6B) for "Read More" arrow or link sticker background
  • Layout — Title in top third · Illustration in middle · Link at bottom

04 — Newsletter

Newsletter Components

Email components follow the same visual hierarchy as the web channel. The Coral button is the only full-color element in email layouts.

Article Preview Card

Email Component — 600px wide
Image 600×300

The Architecture of Strategy

We often confuse tactics for strategy. Here is how I map the ecosystem before building a single component.

Read Full Story
Email Button
.button {
  background-color: #FF6B6B; /* Coral */
  color: #ffffff !important;
  padding: 12px 24px;
  font-weight: bold;
  font-family: sans-serif;
  text-decoration: none;
  display: inline-block;
}

05 — Content Cards

Content Cards & Thumbnails

Index page cards are the primary discovery surface. They follow a strict typographic hierarchy: category tag → headline → excerpt → link. No deviation.

Index Page Card

Grid Item — ~300px wide
Systems Thinking
Mapping The Future
An exploration of how personal data feeds into the larger strategic ecosystem.
Read Story →

06 — Technical Specs

Technical Specifications

All values are absolute. When in doubt, refer to this table.

Category Value Usage
Background#F5F3F0Page body, social backgrounds
Body Text#1A1A1A / #000000Paragraphs, lists, all body content
Metadata#666666Dates, bylines, captions only
Accent — Tags#FF6B6BCategory labels, small UI accents, buttons
Accent — Links#4ECDC4Interactive text links ONLY
Box Background#A8DADCSidebar / contextual boxes — black text required
Display FontPlayfair Display 900All headlines h1–h3
Body FontLora 400All paragraph and list text
UI FontLato 700Tags, labels, metadata, buttons
Spacing Grid8px baseAll margins and padding in multiples of 8
Line Height1.7 (body)Generous leading for editorial readability
Border Radius2pxCards, boxes — nearly square corners

07 — Do's & Don'ts

Do's and Don'ts

These rules protect the integrity of the channel. They are not suggestions.

✓ Do

Keep text black. Even on the light blue sidebar box, text must remain #000000 for maximum legibility and brand consistency.

Correct: Black text on Blue
✗ Don't

Never use teal for body text. #4ECDC4 is reserved for interactive hyperlinks only — it is the only use of blue in this system.

Wrong: Teal as body text
✓ Do

Use Coral sparingly. Small UI elements only — tags, category labels, button backgrounds, timeline markers.

Building Series · Use Case
✗ Don't

No gradients on typography. All type is flat, solid color — either true black, coral, or gray. No gradient fills, no shadows, no outlines.

✓ Do

Illustrations at center. All editorial illustrations are isometric, hand-crafted in style, placed as the visual focal point of any layout.

✗ Don't

No photography for hero images. The Insights channel uses commissioned illustrations, not stock photography, for all primary article visuals.

08 — Quick Reference

Quick Reference

Copy-paste this into any new Insights asset to start from a compliant baseline.

CSS Variable Stack

:root {
  /* Colors */
  --bg-cream:     #F5F3F0;
  --text-black:   #1A1A1A;
  --text-gray:    #666666;
  --accent-coral: #FF6B6B;
  --accent-teal:  #4ECDC4;
  --box-blue:     #A8DADC;

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body:    'Lora', serif;
  --font-ui:      'Lato', sans-serif;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-black);
  font-family: var(--font-body);
  line-height: 1.7;
}

h1, h2, h3 {
  color: #000000;
  font-family: var(--font-display);
  font-weight: 900;
}

/* Links — teal is the ONLY non-black text */
a { color: var(--accent-teal); }

/* Tags and UI labels */
.tag {
  color: var(--accent-coral);
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}