Harrison Bernstein logo

Visual Identity

Brand Guidelines

Our visual identity and brand standards for consistent, professional representation across all touchpoints.

01

Brand Identity

Name

Harrison Bernstein

Legal Entity

Harrison Bernstein Ltd

Category

Chartered Accountants

Established

1994

Positioning

A digital-first, AI-ready chartered accountancy firm combining 30+ years of trusted expertise with cutting-edge technology.

Our Personality

Professional

/prəˈfɛʃ(ə)n(ə)l/

adjective

Confident, authoritative, established

Approachable

/əˈprəʊtʃəb(ə)l/

adjective

Warm, personal, easy to work with

Forward-thinking

/ˌfɔːwəd ˈθɪŋkɪŋ/

adjective

Digital-first, AI-ready, innovative

Trustworthy

/ˈtrʌs(t)wəːði/

adjective

Transparent, ICAEW regulated, reliable

03

Colour Palette

Brand Green

Accent Gold

Neutral

Colour in Use

Primary

brand-800 · #1a3a2a

Buttons, headers, primary backgrounds

Accent

accent-500 · #c9a84c

Highlights, CTAs, emphasis

Decorative accent

Text

neutral-900 · #111916

Body text, headings

Heading Sample

Accessibility — WCAG Contrast Ratios

ForegroundBackgroundPreviewRatioLevel
White
brand-800
Aa
12.5:1AAA
brand-800
White
Aa
12.5:1AAA
White
neutral-900
Aa
17.1:1AAA
accent-500
White
Aa
2.3:1Fail

Decoration only, not for text

accent-700
White
Aa
5.8:1AA
White
brand-700
Aa
8.2:1AAA
04

Typography

Libre Baskerville

serif

Headings · Weight 400 · 700

Open in Google Fonts

Display

Ambitious Businesses

Title

Our Services

Heading

Section Header

Conveys tradition, trust and premium quality. Used exclusively for headings and display text.

Inter

sans-serif

Body · Weight 400 · 500 · 600

Open in Google Fonts

Semibold (600)

Buttons, emphasis, labels

Medium (500)

Subheadings, navigation

Regular (400)

Body text, descriptions, long-form content

Clean, modern and highly legible. Used for all body text, navigation, buttons and UI elements.

Type Scale

Display

60px

Chartered Accountants

Title

36px

Our Services

Heading

24px

Recent Transactions

Body

16px

We combine over 30 years of chartered accountancy expertise with modern cloud tools and a proactive approach.

Embed Fonts

HTML <link> tag

<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">

CSS @import

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');
05

Tone of Voice

We are

  • Professional but approachable
  • Confident, not boastful
  • Modern and forward-looking
  • Clear and jargon-free
  • Proactive, not reactive

We avoid

  • Overly formal or legalistic language
  • Technical jargon without explanation
  • Aggressive sales messaging
  • Vague or generic promises
  • Reactive, compliance-only framing
06

Live Preview

See how the brand system works in practice. Toggle between light and dark themes to preview colour and typography combinations.

Expert Services

Tax Planning & Advisory

Proactive tax strategies tailored to your business goals. We help you keep more of what you earn through legitimate planning.

HB

Harrison Bernstein Ltd

Chartered Accountants · Est. 1994

07

Downloads

08

For AI & Developers

Our brand data is machine-readable and publicly accessible for AI tools, design systems, and integrations. All assets are served with Access-Control-Allow-Origin: * headers. Logos are static files — not behind image optimisation proxies.

ResourceURLFormat
Brand manifesthblca.com/brand.jsonJSON
Site overviewhblca.com/llms.txtPlain text
Full site contenthblca.com/llms-full.txtPlain text
Logo assetshblca.com/brand/Static files
Colour palettehblca.com/brand/palette.jsonJSON
Sitemaphblca.com/sitemap.xmlXML

JavaScript

// Fetch HBLCA brand data
const brand = await fetch('https://www.hblca.com/brand.json')
  .then(r => r.json());

console.log(brand.colors.semantic.primary);
// → #1a3a2a

console.log(brand.logos.primary_svg);
// → https://www.hblca.com/brand/logo.svg

CSS Custom Properties

:root {
  --brand-primary: #1a3a2a;
  --brand-accent: #c9a84c;
  --brand-text: #111916;
  --font-heading: 'Libre Baskerville', serif;
  --font-body: 'Inter', sans-serif;
}