Valantic Brand Styling
Overview
To access Valantic's official brand identity resources, use this skill. This includes the Liquid Brand Design system, which adapts the visual language to specific target groups while maintaining the One Firm identity.
Keywords: Liquid Brand Design, Route A, Route B, Route C, valantic gradient, Segoe UI, Calibre, visual identity, One Firm
1. Liquid Brand Design Strategy
The Valantic brand operates on a flexible Liquid Brand Design model. This allows for distinct visual communication depending on the target group and touchpoint.
Visual Routes (The A–B–C System)
Select the appropriate route based on the audience and message intensity.
Route A: Restrained & Elegant
- Attributes: Restrained, elegant, informative, serious
- Target Audience: Conservative industries (Banking, Insurance), high-probity services (Finance, Legal, Data Privacy)
- Use Cases: Invoices, data sheets, formal reporting
- Visual Style: Standard layouts, minimal distraction
Route B: Self-Confident & Human (Standard)
- Attributes: Self-confident, activating, human, approachable
- Status: Default choice (covers ~80% of use cases)
- Target Audience: Agile customers (IT, Automotive, Manufacturing), internal communications
- Use Cases: Project updates, team presentations, general communication
- Visual Style: Circular portrait mask ("Route B Shape") emphasizing the human element
Route C: Dynamic & Expressive
- Attributes: Dynamic, present, expressive, bold
- Target Audience: Marketing, start-ups, recruiting (talent acquisition)
- Use Cases: Fairs, events, zeitgeist-sensitive industries (e-commerce, tourism)
- Visual Style: Irregular "Valantic V" polygon mask with high visual energy
2. Design Tokens & Colors
Primary Brand Colors
- Valantic Coral:
#FF5757 — primary accent for headings, links, and highlights
- Purple Heart:
#4C26B7 — secondary anchor (deep blue-purple, used sparingly)
- Peach:
#FFCCAA — secondary accent, primarily used in gradients
Utility Colors
- Info Blue:
#4A9EFF — informational callouts and tips
- Warning Orange:
#FF9800 — warnings and important notices
Text Colors
- Primary Text:
#333333 — body text
- Dark Text:
#1A1A1A — emphasized text, subheadings
- Light Background:
#F8F8F8 — intro sections, table headers
The Valantic Gradient
The gradient adds depth and recognition without overwhelming content.
- Colors: Valantic Coral (
#FF5757) → Peach (#FFCCAA)
- Angle:
315° (top-left to bottom-right)
- Usage: Shapes, active elements, selected icons
3. Typography System
Digital & Web Standard
- Font Family: Calibre
- Fallbacks: Segoe UI, Helvetica, Arial, sans-serif
- Weights:
- H1/H2 (Section Titles): Light (300) — CORAL color
- H3/H4 (Subsections): Semibold/Bold (600) — BLACK color
- Body: Regular (400)
Heading Hierarchy
| Level |
Color |
Weight |
Example |
| H1 |
#FF5757 Coral |
300 (Light) |
Main document titles |
| H2 |
#FF5757 Coral |
300 (Light) |
Section headings |
| H3 |
#1A1A1A Black |
600 (Semibold) |
Subsection headings |
| H4 |
#1A1A1A Black |
600 (Semibold) |
Detail headings |
Special Text Styles
- Pull Quotes: Coral (
#FF5757), italic
- Person Names: Coral (
#FF5757), bold
- Running Header: Black, uppercase
Office & Presentation Standard (PowerPoint / Word)
When proprietary fonts are unavailable, use Segoe UI.
- Rule: Do not use Segoe UI Bold (poor proportions on Windows)
- Correct Usage: Use Segoe UI Semibold for headings and emphasized text
4. Iconography & Imagery
Icon Style
- Source: Microsoft Stock Icons (Thin style)
- Coloring:
- Default: Valantic Coral (
#FF5757)
- Route-specific: Purple Heart (
#4C26B7) for formal contexts
- Highlights: Apply the valantic gradient (315°) selectively
Generative Image Workflow
- Requirement: Header images (especially Route C) must use Generative Fill to extend the canvas horizontally
- Goal: Prevent cropping of faces or subjects when applying irregular Valantic masks
5. Technical Implementation Details
CSS Variables (Web)
:root {
/* Primary Brand Colors */
--valantic-coral: #FF5757;
--valantic-purple: #4C26B7;
--valantic-peach: #FFCCAA;
/* Utility Colors */
--valantic-info: #4A9EFF;
--valantic-warning: #FF9800;
/* Text Colors */
--text-primary: #333333;
--text-dark: #1A1A1A;
--bg-light: #F8F8F8;
/* Gradient */
--valantic-gradient: linear-gradient(
315deg,
#FF5757 0%,
#FFCCAA 100%
);
/* Typography */
--font-primary: "Calibre", "Segoe UI", Helvetica, Arial, sans-serif;
}
h1, h2 {
color: var(--valantic-coral);
font-weight: 300;
}
h3, h4 {
color: var(--text-dark);
font-weight: 600;
}
p {
color: var(--text-primary);
line-height: 1.6;
}
a {
color: var(--valantic-coral);
text-decoration: none;
}
.pull-quote, blockquote.highlight {
color: var(--valantic-coral);
font-style: italic;
}
.author-name {
color: var(--valantic-coral);
font-weight: 600;
}
.highlight-box {
border-left: 4pt solid var(--valantic-coral);
background: #fff5f5;
padding: 12pt 12pt 12pt 15pt;
}
.info-box {
border-left: 4pt solid var(--valantic-info);
background: #f0f8ff;
padding: 12pt 12pt 12pt 15pt;
}
.warning-box {
border-left: 4pt solid var(--valantic-warning);
background: #fff8f0;
padding: 12pt 12pt 12pt 15pt;
}
th {
background: var(--bg-light);
font-weight: 600;
}
.chart-primary { fill: var(--valantic-coral); }
.chart-secondary { fill: #999999; }
List Formatting (Presentations)
- Levels 1–3: Standard bullets
- Level 4:
- Bold Coral (Route B / C)
- Black (Route A)
Used as subheadings within lists
6. Quick Reference
Color Palette
| Name |
Hex |
RGB |
Usage |
| Valantic Coral |
#FF5757 |
255, 87, 87 |
H1/H2 headings, links, quotes, accents |
| Purple Heart |
#4C26B7 |
76, 38, 183 |
Secondary brand, formal contexts |
| Peach |
#FFCCAA |
255, 204, 170 |
Gradient end, soft backgrounds |
| Info Blue |
#4A9EFF |
74, 158, 255 |
Info callouts |
| Warning Orange |
#FF9800 |
255, 152, 0 |
Warning callouts |
| Text Primary |
#333333 |
51, 51, 51 |
Body text |
| Text Dark |
#1A1A1A |
26, 26, 26 |
H3/H4 headings, bold text |
| Background Light |
#F8F8F8 |
248, 248, 248 |
Intro boxes, table headers |
Element Quick Reference
| Element |
Color |
Weight |
Style |
| H1, H2 |
Coral #FF5757 |
300 |
Normal |
| H3, H4 |
Black #1A1A1A |
600 |
Normal |
| Body |
Gray #333333 |
400 |
Normal |
| Pull Quote |
Coral #FF5757 |
400 |
Italic |
| Author Name |
Coral #FF5757 |
600 |
Normal |
| Links |
Coral #FF5757 |
- |
No underline |
| Chart Bars |
Coral #FF5757 |
- |
Primary data |
1---2name: valantic-brand3description: Applies Valantic's "Liquid Brand Design" system, including specific visual routes (A, B, C), official colors, typography, and office/web standards.4---56# Valantic Brand Styling78## Overview910To access Valantic's official brand identity resources, use this skill. This includes the **Liquid Brand Design** system, which adapts the visual language to specific target groups while maintaining the **One Firm** identity.1112**Keywords**: Liquid Brand Design, Route A, Route B, Route C, valantic gradient, Segoe UI, Calibre, visual identity, One Firm1314---1516## 1. Liquid Brand Design Strategy1718The Valantic brand operates on a flexible **Liquid Brand Design** model. This allows for distinct visual communication depending on the target group and touchpoint.1920### Visual Routes (The A–B–C System)2122Select the appropriate route based on the audience and message intensity.2324#### Route A: Restrained & Elegant2526- **Attributes**: Restrained, elegant, informative, serious27- **Target Audience**: Conservative industries (Banking, Insurance), high-probity services (Finance, Legal, Data Privacy)28- **Use Cases**: Invoices, data sheets, formal reporting29- **Visual Style**: Standard layouts, minimal distraction3031#### Route B: Self-Confident & Human (Standard)3233- **Attributes**: Self-confident, activating, human, approachable34- **Status**: **Default choice** (covers ~80% of use cases)35- **Target Audience**: Agile customers (IT, Automotive, Manufacturing), internal communications36- **Use Cases**: Project updates, team presentations, general communication37- **Visual Style**: Circular portrait mask ("Route B Shape") emphasizing the human element3839#### Route C: Dynamic & Expressive4041- **Attributes**: Dynamic, present, expressive, bold42- **Target Audience**: Marketing, start-ups, recruiting (talent acquisition)43- **Use Cases**: Fairs, events, zeitgeist-sensitive industries (e-commerce, tourism)44- **Visual Style**: Irregular "Valantic V" polygon mask with high visual energy4546---4748## 2. Design Tokens & Colors4950### Primary Brand Colors5152- **Valantic Coral**: `#FF5757` — primary accent for headings, links, and highlights53- **Purple Heart**: `#4C26B7` — secondary anchor (deep blue-purple, used sparingly)54- **Peach**: `#FFCCAA` — secondary accent, primarily used in gradients5556### Utility Colors5758- **Info Blue**: `#4A9EFF` — informational callouts and tips59- **Warning Orange**: `#FF9800` — warnings and important notices6061### Text Colors6263- **Primary Text**: `#333333` — body text64- **Dark Text**: `#1A1A1A` — emphasized text, subheadings65- **Light Background**: `#F8F8F8` — intro sections, table headers6667### The Valantic Gradient6869The gradient adds depth and recognition without overwhelming content.7071- **Colors**: Valantic Coral (`#FF5757`) → Peach (`#FFCCAA`)72- **Angle**: `315°` (top-left to bottom-right)73- **Usage**: Shapes, active elements, selected icons7475---7677## 3. Typography System7879### Digital & Web Standard8081- **Font Family**: Calibre82- **Fallbacks**: Segoe UI, Helvetica, Arial, sans-serif83- **Weights**:84 - H1/H2 (Section Titles): Light (300) — CORAL color85 - H3/H4 (Subsections): Semibold/Bold (600) — BLACK color86 - Body: Regular (400)8788### Heading Hierarchy8990| Level | Color | Weight | Example |91|-------|-------|--------|---------|92| H1 | `#FF5757` Coral | 300 (Light) | Main document titles |93| H2 | `#FF5757` Coral | 300 (Light) | Section headings |94| H3 | `#1A1A1A` Black | 600 (Semibold) | Subsection headings |95| H4 | `#1A1A1A` Black | 600 (Semibold) | Detail headings |9697### Special Text Styles9899- **Pull Quotes**: Coral (`#FF5757`), italic100- **Person Names**: Coral (`#FF5757`), bold101- **Running Header**: Black, uppercase102103### Office & Presentation Standard (PowerPoint / Word)104105When proprietary fonts are unavailable, use **Segoe UI**.106107- **Rule**: **Do not use Segoe UI Bold** (poor proportions on Windows)108- **Correct Usage**: Use **Segoe UI Semibold** for headings and emphasized text109110---111112## 4. Iconography & Imagery113114### Icon Style115116- **Source**: Microsoft Stock Icons (Thin style)117- **Coloring**:118 - Default: Valantic Coral (`#FF5757`)119 - Route-specific: Purple Heart (`#4C26B7`) for formal contexts120 - Highlights: Apply the valantic gradient (315°) selectively121122### Generative Image Workflow123124- **Requirement**: Header images (especially Route C) must use **Generative Fill** to extend the canvas horizontally125- **Goal**: Prevent cropping of faces or subjects when applying irregular Valantic masks126127---128129## 5. Technical Implementation Details130131### CSS Variables (Web)132133```css134:root {135 /* Primary Brand Colors */136 --valantic-coral: #FF5757;137 --valantic-purple: #4C26B7;138 --valantic-peach: #FFCCAA;139140 /* Utility Colors */141 --valantic-info: #4A9EFF;142 --valantic-warning: #FF9800;143144 /* Text Colors */145 --text-primary: #333333;146 --text-dark: #1A1A1A;147 --bg-light: #F8F8F8;148149 /* Gradient */150 --valantic-gradient: linear-gradient(151 315deg,152 #FF5757 0%,153 #FFCCAA 100%154 );155156 /* Typography */157 --font-primary: "Calibre", "Segoe UI", Helvetica, Arial, sans-serif;158}159160h1, h2 {161 color: var(--valantic-coral);162 font-weight: 300;163}164165h3, h4 {166 color: var(--text-dark);167 font-weight: 600;168}169170p {171 color: var(--text-primary);172 line-height: 1.6;173}174175a {176 color: var(--valantic-coral);177 text-decoration: none;178}179180.pull-quote, blockquote.highlight {181 color: var(--valantic-coral);182 font-style: italic;183}184185.author-name {186 color: var(--valantic-coral);187 font-weight: 600;188}189190.highlight-box {191 border-left: 4pt solid var(--valantic-coral);192 background: #fff5f5;193 padding: 12pt 12pt 12pt 15pt;194}195196.info-box {197 border-left: 4pt solid var(--valantic-info);198 background: #f0f8ff;199 padding: 12pt 12pt 12pt 15pt;200}201202.warning-box {203 border-left: 4pt solid var(--valantic-warning);204 background: #fff8f0;205 padding: 12pt 12pt 12pt 15pt;206}207208th {209 background: var(--bg-light);210 font-weight: 600;211}212213.chart-primary { fill: var(--valantic-coral); }214.chart-secondary { fill: #999999; }215```216217## List Formatting (Presentations)218219- Levels 1–3: Standard bullets220- Level 4:221 - Bold Coral (Route B / C)222 - Black (Route A)223 Used as subheadings within lists224225---226227## 6. Quick Reference228229### Color Palette230231| Name | Hex | RGB | Usage |232|------|-----|-----|-------|233| Valantic Coral | `#FF5757` | 255, 87, 87 | H1/H2 headings, links, quotes, accents |234| Purple Heart | `#4C26B7` | 76, 38, 183 | Secondary brand, formal contexts |235| Peach | `#FFCCAA` | 255, 204, 170 | Gradient end, soft backgrounds |236| Info Blue | `#4A9EFF` | 74, 158, 255 | Info callouts |237| Warning Orange | `#FF9800` | 255, 152, 0 | Warning callouts |238| Text Primary | `#333333` | 51, 51, 51 | Body text |239| Text Dark | `#1A1A1A` | 26, 26, 26 | H3/H4 headings, bold text |240| Background Light | `#F8F8F8` | 248, 248, 248 | Intro boxes, table headers |241242### Element Quick Reference243244| Element | Color | Weight | Style |245|---------|-------|--------|-------|246| H1, H2 | Coral `#FF5757` | 300 | Normal |247| H3, H4 | Black `#1A1A1A` | 600 | Normal |248| Body | Gray `#333333` | 400 | Normal |249| Pull Quote | Coral `#FF5757` | 400 | Italic |250| Author Name | Coral `#FF5757` | 600 | Normal |251| Links | Coral `#FF5757` | - | No underline |252| Chart Bars | Coral `#FF5757` | - | Primary data |