Loading...

Brand Implementation Guide v2.3

Use this as the implementation contract for Transcend logos, colors, email mode choice, web UI basics, and AI prompting. It is an internal resource for builders and operators, not a public brand book.

Executive Summary

Most Transcend work should be quiet, useful, and on-brand without heavy chrome. Use plain email for normal correspondence, branded email only for report-like deliverables, and the shared web assets/CSS variables for tools pages so brand updates remain centralized.

Audience / Access Contract

Primary UsersTranscend team members, approved operators, and tool builders producing internal assets.
Decision EnabledChoose the right brand mode, logo asset, color treatment, and implementation pattern.
Not HereExternal brand approvals, LP messaging strategy, public website copy, or bespoke design direction.

Source Freshness

Reviewed May 20, 2026 against `branding/TRANSCEND_VISUAL_IDENTITY_GUIDE.md` v1.2, `docs/DESIGN_SYSTEM.md`, `shared/styles.css`, and current plain/branded email skill guidance. Refresh this page when logo assets, email dark-mode rules, or shared CSS variables change.

When to Use Branding First

We have two email skills — transcend-plain-email and transcend-branded-email (branded). Both are on-brand. The difference is chrome: the branded skill adds the navy header, logo, and footer. The plain skill still uses our brand colors, navy table headers, and 13px font — it just looks like a normal professional email instead of a newsletter.

Most emails should use transcend-plain-email.

You're writing... Skill
Reply, follow-up, check-in, introtranscend-plain-email — on-brand, no chrome
LP outreach, deck forward, fundraisingtranscend-plain-email — on-brand, no chrome
Thank-you to a founder or partnertranscend-plain-email — on-brand, no chrome
ROAS report, portfolio analysistranscend-branded-email — navy header, logo, tables
Platform announcement, team update with datatranscend-branded-email — navy header, logo, tables

Rule of thumb: If you'd normally just type and hit send, use transcend-plain-email. Use transcend-branded-email (branded) only for reports, analyses, and announcements — deliverables that happen to travel by email.

For AI tools: Tell your AI "Write a transcend-plain-email" for most messages. Only say "Write a transcend-branded-email branded email" for reports and announcements.

Quick Start (Copy-Paste Ready)

Essential Colors

Navy (headers): #1E3A8A
Blue Light (buttons): #2c5aa0
Text Primary: #111827
Text Secondary: #6b7280
Background: #f9fafb
Border: #e5e7eb

Semantic Colors

Success Green: #27ae60
Warning Amber: #f59e0b
Danger Red: #dc2626

Design Rules

Border radius: 6px (tables, buttons)
Border radius: 8px (cards)
Table headers: Navy bg, white text
Buttons: Blue Light bg, white text

1. Brand Identity (Strategic)

Logo Usage

Critical Rule

Never recreate the logo. Always use official PNG files. Never ask AI tools to generate or embed the logo.

Transcend Light Logo

Light (White) Logo - Use on dark backgrounds

Transcend Dark Logo

Dark (Blue) Logo - Use on light backgrounds

Logo URLs (Hosted)

Light: https://transcend-tools.web.app/shared/Transcend%20Logo%20Light.png Dark: https://transcend-tools.web.app/shared/Transcend%20Logo%20Dark.png

Color Palette

Primary Brand Colors

Transcend Blue (Navy)
#1E3A8A
Logo, headers, table headers
Blue Light
#2c5aa0
Links, buttons, accents
Blue Dark
#1e4278
Hover states
Blue Tint
#e8f0f8
Light backgrounds

Semantic Colors

Success Green
#27ae60
Positive metrics, success
Warning Amber
#f59e0b
Caution, attention
Danger Red
#dc2626
Critical issues, errors

Text & Background

Text Primary
#111827
Headings, body text
Text Secondary
#6b7280
Labels, muted text
Page Background
#f9fafb
Screen backgrounds
Border
#e5e7eb
Dividers, table borders

Typography

Context Font Stack
Web & Email Helvetica, Arial, sans-serif
Print (Body) Source Serif 4, Georgia, 'Times New Roman', serif
Print (Headings) Inter, Helvetica, Arial, sans-serif

2. Design Specifications (Tactical)

Border Radius Standards

Element Radius Example
Tables 6px Data tables, comparison tables
Buttons 6px Primary/secondary CTAs
Key boxes 6px Callout boxes, alerts
Cards 8px Content cards, dashboard panels
Badges 4px Status indicators, tags

Component Specifications

Tables

Header: Navy (#1E3A8A) background, white text, 600 weight, uppercase, 12px

Cells: 12-16px padding, border-bottom 1px solid #e5e7eb

Container: border-radius 6px, overflow hidden

Buttons

Primary: Blue Light (#2c5aa0) background, white text, 600 weight

Padding: 12px 24px

Hover: Blue Dark (#1e4278)

Key Boxes (Callouts)

Standard: Light gray (#f9fafb) background, 4px blue left border

Success: Light green (#dcfce7) background, green (#27ae60) border

Warning: Light amber (#fef3c7) background, amber (#f59e0b) border

Error: Light red (#fee2e2) background, red (#dc2626) border

3. Email Implementation (Technical)

Critical Rule

Emails must use table-based layout with inline styles only. No external CSS, no <style> blocks in body, no @media queries.

Email Client Compatibility

Feature Gmail Apple Mail Outlook
Inline styles Yes Yes Yes
Border-radius Yes Yes No (use VML)
Gradients Yes Yes No (solid fallback)
rgba() colors Yes Yes No (use hex)

Email Don'ts

@media queries (stripped by Gmail)
External stylesheets
rgba() colors (Outlook fails)
CSS positioning (position: absolute)
Flexbox or Grid
SVG images (use PNG)

3.5 Website Mode (Interactive Pages) NEW

Website Mode applies to dashboards, analytical tools, and interactive portals. While Email and Document modes are static, Website Mode prioritizes functional hierarchy, state transitions, and data density.

Layout & Structure

Containment: Use a fluid layout with max-width of 1440px to prevent unreadable line lengths on ultra-wide monitors.
Spacing: Follow an 8px system. Margins and padding should use 8, 16, 24, 32, or 40px steps.
Hierarchy: Use page background at level 1, white content cards at level 2, and overlays/modals at level 3.

Navigation Patterns

Global Header: Keep a persistent top bar. Use navy with the light logo for brand-heavy pages and white with the dark logo for utility dashboards.
Sidebar: For complex tools, use a left navigation rail with a 4px Blue Light active accent.
Breadcrumbs: Use for pages nested more than two levels deep, with muted parent links and primary-color current-page text.

Interactive Elements

Button States: Default Blue Light, hover Blue Dark, active as a darker shade or slight scale, and loading as a centered spinner or skeleton pulse.
Form Inputs: Use a 1px border, 2px Blue Light focus ring, and Success Green or Danger Red validation text below the field.
Hover States: Interactive cards should subtly lift or shift border color to Blue Light.

Data Visualization

Dashboards: Group related metrics in 8px-radius cards and reserve big-number formatting for primary KPIs.
Chart Sequence: Use Navy, Blue Light, Success Green, Warning Amber, then Soft Blue.
Empty States: Never show a blank screen; use a muted icon, Text Secondary message, and primary CTA.

Accessibility Basics

Contrast: All text on backgrounds must meet WCAG AA standards; never use light gray text for essential information.
Target Size: Interactive elements need at least a 44x44px clickable area.
Focus Visibility: Replace browser focus rings only with a high-contrast brand-compliant focus state.

4. Code Reference (Copy-Paste Snippets)

Email Brand Header

<tr> <td style="background-color: #1E3A8A; padding: 20px 32px;"> <table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td style="vertical-align: middle;"> <img src="https://transcend-tools.web.app/shared/Transcend%20Logo%20Light.png" alt="Transcend" height="28" style="height: 28px; width: auto; display: block;"> </td> <td align="right" style="vertical-align: middle; font-size: 12px; color: #b8c5d9; letter-spacing: 1px; text-transform: uppercase; font-family: Helvetica, Arial, sans-serif;"> Portfolio Intelligence </td> </tr> </table> </td> </tr>

Data Table

<table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0" style="border-radius: 6px; border: 1px solid #e5e7eb; border-collapse: separate; border-spacing: 0; overflow: hidden;"> <tr> <th style="background-color: #1E3A8A; color: #ffffff; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px;">Column 1</th> <th style="background-color: #1E3A8A; color: #ffffff; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px;">Column 2</th> </tr> <tr> <td style="padding: 12px 16px; border-bottom: 1px solid #e5e7eb; color: #111827; font-size: 13px;">Row Data</td> <td style="padding: 12px 16px; border-bottom: 1px solid #e5e7eb; color: #111827; font-size: 13px;">Value</td> </tr> </table>

Key Finding Box (Blue)

<table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0" style="margin: 16px 0;"> <tr> <td style="background-color: #f9fafb; border-left: 4px solid #2c5aa0; padding: 16px 20px; border-radius: 0 6px 6px 0;"> <p style="margin: 0 0 8px 0; font-weight: 600; color: #1E3A8A; font-size: 14px;">Key Finding</p> <p style="margin: 0; color: #111827; font-size: 13px; line-height: 1.5;">Your finding text goes here.</p> </td> </tr> </table>

Primary Button

<a href="https://example.com" style="background-color: #2c5aa0; color: #ffffff; padding: 12px 24px; border-radius: 6px; font-family: Helvetica, Arial, sans-serif; font-weight: 600; font-size: 13px; text-decoration: none; display: inline-block;">Button Text</a>

5. AI Tool Prompting Guide

When working with AI tools (Claude, Gemini, GPT), include these specifications in your prompts for brand-consistent output.

Standard Prompt Addition

Use Transcend brand colors: - Navy #1E3A8A for headers and table headers - Blue Light #2c5aa0 for buttons and links - Text #111827, secondary text #6b7280 - Background #f9fafb, borders #e5e7eb - Success green #27ae60, warning amber #f59e0b, danger red #dc2626 Design rules: - Border radius: 6px for tables/buttons, 8px for cards - Table headers: navy background with white text - Font: Helvetica, Arial, sans-serif Do NOT generate or recreate the Transcend logo - use the official PNG files.

For Email Generation

Create an email using Transcend brand standards: - Table-based layout with inline styles only - Navy (#1E3A8A) header bar with white logo - Font: Helvetica, Arial, sans-serif - Body text: #111827, secondary: #6b7280 - Tables: navy headers, white text, 6px border-radius - No @media queries, no external CSS, no rgba colors - Include VML fallback for buttons (Outlook compatibility)

For Image Generation

Create [description] using Transcend brand colors: - Primary navy blue: #1E3A8A - Accent blue: #2c5aa0 - Keep space for logo overlay (I will add the real logo in post-production) - Style: Professional, modern, appropriate for gaming/VC industry - Resolution: 2048x2048 (I will downscale as needed)
✍️ Select text to comment
➕ Add Comment

💬 Comments

💬

No comments yet.

Select text to add the first comment.

Add Comment