Brand System

The visual language of
Hebrew Calendar.

A single source of truth for color, type, and tone. Use this for every customer dashboard, pricing page, pitch deck, ad creative, and PDF report.

The two hero colors

Navy & Gold

These two colors carry the entire brand. Navy is the foundation: stable, trustworthy, premium. Gold is the accent: warmth, value, signal. Every other color in the system supports these two.

Primary
Navy
HEX #1a2744
RGB 26, 39, 68
VAR --navy
Use for: primary backgrounds in dark contexts, primary text on light backgrounds, button bodies, headers. The brand's anchor color.
Accent
Gold
HEX #c9a84c
RGB 201, 168, 76
VAR --gold
Use for: CTAs, eyebrow labels, active states, dividers, key numbers, section markers. The visual signal that says "look here."
Navy family

Background hierarchy

Three navy shades create depth in dark contexts. Use the darkest behind everything, mid-navy for surfaces, lightest for elevated cards or hover states.

Background
Navy Dark
HEX #111b35
VAR --navy-dark
Page background in dark contexts (dashboard, pricing).
Surface
Navy
HEX #1a2744
VAR --navy
Card surfaces, modal backgrounds, primary type on light.
Elevated
Navy Light
HEX #243358
VAR --navy-light
Elevated elements, hover states, input fields.
Gold family

Accent variations

Gold appears in three forms depending on the context. Use the lighter shade for gradients and warm highlights, deeper gold for text on light backgrounds where contrast matters.

On light
Gold Deep
HEX #a08232
VAR --gold-deep
Use on white/cream backgrounds where standard gold fails contrast (WCAG AA).
Primary
Gold
HEX #c9a84c
VAR --gold
The brand gold. CTAs, eyebrows, badges. Use on navy.
Gradient end
Gold Light
HEX #e8c97a
VAR --gold-light
Gradient highlights: linear-gradient(135deg, gold → gold-light).
Neutrals

Whites, creams, and grays

The brand never uses pure stark white outside type. Cream adds warmth and premium feel. Three muted grays handle body text and meta info in light contexts.

Type
White
HEX #ffffff
Background
Cream
HEX #f7f6f0
Body text
Muted
HEX #5b6a8b
Meta
Soft
HEX #8b97b3
Semantic colors

Status & feedback

These colors carry meaning. Use them only for their semantic purpose — never decoratively. A green that doesn't mean "good" breaks the visual language.

Success
Success
HEX #25d366
Confirmations, positive deltas, WhatsApp.
Danger
Danger
HEX #ff6b6b
Errors, destructive actions, alerts.
Info
Info
HEX #6ab0ff
Impressions on charts, neutral data emphasis.
Warning
Warning
HEX #8a5d0b
Caution states, pending items in PDFs.
When to use what

Dark mode vs light mode

The brand operates in two contexts. Dark for digital products that users live inside (dashboards, app interstitials). Light for documents customers print or forward (pitch decks, PDF reports).

Dark · App & Dashboards
סטטיסטיקה
2,847 חשיפות
בתקופה שנבחרה · CTR 9.43%
פעולה
Light · PDFs & Pitch decks
סטטיסטיקה
2,847 חשיפות
בתקופה שנבחרה · CTR 9.43%
פעולה

Dark mode rules

Background: --navy-dark with subtle gold radial gradient. Cards: rgba(255,255,255,0.04) on the dark background. Borders: rgba(201,168,76,0.18). Body text: rgba(255,255,255,0.85). Used in: dashboard, pricing.html, ad interstitials.

Light mode rules

Background: #ffffff with cream #f7f6f0 as secondary surface. Borders: #e1ddc8. Body text: #5b6a8b. Gold text on white must use --gold-deep for AA contrast. Used in: pitch decks, PDF reports, the strategic roadmap.

Recurring visual motifs

Signature elements

Three small patterns repeat across the entire system. Use them consistently — they're how the brand is recognized.

1. Gold eyebrow label

Small uppercase label, 2.5px letter-spacing, gold color, with a 3px gold border on the left (or right in RTL). Used above every section title. CSS:

font-size: 9-11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); border-left: 3px solid var(--gold); padding-left: 12px;

2. Gold gradient on CTAs

background: linear-gradient(135deg, var(--gold), var(--gold-light)); with color: var(--navy-dark); for the text. Hover: transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,0.3);

3. Subtle radial gold glow on dark backgrounds

Adds depth without distraction. Apply to body or hero containers in dark mode:

background-image: radial-gradient(ellipse at 20% 20%, rgba(201,168,76,0.06) 0%, transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(26,39,68,0.9) 0%, var(--navy-dark) 100%);

Type system

Typography

Two fonts cover every need. Heebo for Hebrew interfaces, Inter for English interfaces and documents. Both share the same neutral, modern character so mixing feels natural.

font-family: Heebo / Inter · 38pt · weight 800 · letter-spacing -0.5px
Display headline
font-family: Heebo / Inter · 22pt · weight 800
Section title
font-family: Heebo / Inter · 11pt · weight 800 · uppercase · 2.5px tracking · gold
Eyebrow label
font-family: Heebo / Inter · 11pt · weight 400 · line-height 1.65
Body paragraph. Use this for descriptive text in light mode, with --muted color. In dark mode use rgba(255,255,255,0.85) for body text. Line height 1.55-1.65 reads best for paragraphs.
font-family: JetBrains Mono · 10pt · for code, hex values, IDs
#1a2744 · const navy = '#1a2744'
Practical rules

Do / Don't

✓ Do
Use gold sparingly — for eyebrows, CTAs, key numbers, dividers. It should be the visual highlight, not the wallpaper.
✗ Don't
Don't use gold for body text on white. It fails WCAG contrast. Use --gold-deep (#a08232) or navy.
✓ Do
Use the cream background (#f7f6f0) instead of pure white for warmer document feel. White only for cards/surfaces.
✗ Don't
Don't introduce new accent colors (purple, teal, etc.) just because a design "could use one." The two-color discipline IS the brand.
✓ Do
Pair gold gradients with navy text inside CTAs. linear-gradient(135deg, gold, gold-light) with color: navy-dark.
✗ Don't
Don't put white text on gold buttons. Looks washed out and unprofessional. Always use navy on gold.
For developers

Copy-paste CSS variables

Drop this into the :root of any new file to inherit the complete palette. Already used by dashboard.html, pricing.html, admin index.html, and all PDF templates.

/* Hebrew Calendar Ad Platform — Brand palette */
/* Drop into the :root of any stylesheet */

:root {
  /* ─── Navy family ─── */
  --navy:        #1a2744;  /* primary */
  --navy-dark:   #111b35;  /* page bg dark */
  --navy-light:  #243358;  /* elevated */

  /* ─── Gold family ─── */
  --gold:        #c9a84c;  /* accent */
  --gold-light:  #e8c97a;  /* gradient end */
  --gold-deep:   #a08232;  /* gold on light bg */

  /* ─── Neutrals ─── */
  --white:       #ffffff;
  --cream:       #f7f6f0;  /* warm doc bg */
  --border:      #e1ddc8;  /* light borders */
  --text:        #1a2744;  /* primary text */
  --muted:       #5b6a8b;  /* body in light */
  --soft:        #8b97b3;  /* meta info */

  /* ─── Semantic ─── */
  --success:     #25d366;
  --danger:      #ff6b6b;
  --info:        #6ab0ff;
  --warning:     #8a5d0b;

  /* ─── In dark contexts only ─── */
  --text-soft:   rgba(255,255,255,0.85);
  --text-muted:  rgba(255,255,255,0.55);
  --gold-soft:   rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.25);
}