
The complete visual identity reference for LITHA Communications. Colors, typography, banner guidelines, and implementation code — all in one place.
01 — Color Palette
Three core colors define the LITHA brand. Tangerine conveys energy and optimism. Purple signals strategic depth. White ensures clarity and professionalism.
Tangerine Orange
Primary background, CTAs, brand identity
#F97316Royal Purple
Accent bars, emphasis, strategic highlights
#6B21A8Pure White
Text on color, backgrounds, clarity
#FFFFFFDeep Purple
#2c0977Orange Dark
#EA580COrange Light
#FDBA74Navy
#0F172AWarm Gray
#FFF7ED02 — Typography
Display Font
Used for headlines, section titles, and bold statements.
Body Font
Used for body copy, descriptions, and supporting text.
| Element | Font | Weight | Size | Line Height |
|---|---|---|---|---|
| Hero Headline | Montserrat | 900 | 64–80px | 1.0 |
| Section Title | Montserrat | 800 | 40–48px | 1.1 |
| Subsection | Montserrat | 700 | 24–32px | 1.2 |
| Body Large | Work Sans | 400 | 18px | 1.6 |
| Body | Work Sans | 400 | 16px | 1.7 |
| Caption | Work Sans | 500 | 14px | 1.5 |
| Code | Fira Code | 400 | 14px | 1.6 |
04 — Responsive Design
Guidelines for adapting the banner across desktop, tablet, and mobile breakpoints.



05 — Usage Guidelines


06 — Implementation
Ready-to-use HTML and CSS for implementing the banner on your website.
<section class="hero-banner">
<div class="hero-content">
<img src="images/litha-logo-white.png"
alt="LITHA Communications"
class="hero-logo">
<h1>
AMPLIFYING IMPACT IN<br>
<span class="accent">RENEWABLE ENERGY</span>
</h1>
<p class="subheading">
Strategic PR & Communications
for Clean Energy Leaders
</p>
<a href="#contact" class="cta-button">
Get Started
</a>
<p class="tagline">
Inspired. Freethinking. Results-driven.
</p>
</div>
</section>.hero-banner {
background: url('litha_website_banner.png')
center center / cover no-repeat;
min-height: 600px;
position: relative;
}
.hero-content {
max-width: 1200px;
margin: 0 auto;
padding: 80px 20px;
}
.accent {
background: #6B21A8;
padding: 4px 12px;
display: inline-block;
}
.cta-button {
background: white;
color: #F97316;
padding: 15px 40px;
font-weight: bold;
border-radius: 5px;
text-decoration: none;
display: inline-block;
transition: transform 0.3s ease;
}
.cta-button:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}# Resize for standard web use
convert litha_website_banner.png \
-resize 1920x600 \
litha_website_banner_web.png
# Compress for faster loading
pngquant --quality=80-90 \
litha_website_banner_web.png07 — Brand Consistency
Tagline
"Inspired. Freethinking. Results-driven."
08 — Accessibility
Ensuring our brand is accessible to everyone, meeting WCAG AA standards.
alt="LITHA Communications — Amplifying Impact in Renewable Energy — Strategic PR for Clean Energy Leaders"Always include descriptive alt text for all banner images.
White on Tangerine
WCAG AA Pass ✓
White on Purple
WCAG AAA Pass ✓
Minimum 16px for body text on mobile devices. Headlines should scale responsively using clamp() or media queries.
Add visible focus indicators for keyboard navigation on all interactive elements, especially the CTA button. Use outline: 3px solid #6B21A8 for focus rings.