The CHORUS color palette draws inspiration from premium natural materials in the Australian Landscape, and sophisticated technology, creating a system that works across dark digital interfaces and light print materials while maintaining accessibility and international appeal.
#000000
Usage: Primary backgrounds, high-contrast text, logo applications. Psychology: Authority, sophistication, premium quality.
#0b0213
Usage: Hero backgrounds, dark accents, secondary elements. Psychology: Richness, mystery, luxury, power, and depth.
#403730
Usage: Warm accents, secondary elements, natural touches. Psychology: Reliability, craftsmanship, approachable intelligence.
#c1bfb1
Usage: UI elements, borders, technical precision. Psychology: Modern sophistication, precision, technology.
#5a6c80
Usage: Primary actions, interactive elements, system feedback. Psychology: Trust, reliability, technological precision.
#515d54
Usage: Success states, positive feedback, growth indicators. Applications: Success messages, positive data visualization.
#8e7b5e
Usage: Warning states, attention indicators, energy elements. Applications: Warnings, attention callouts, active processes.
#593735
Usage: Error states, critical alerts, problem indicators. Applications: Error messages, critical warnings, urgent notifications.
Dark mode is the preferred default for all CHORUS Services applications
Available as alternative but dark mode is strongly preferred
The CHORUS iconography system uses the Coolicons v4.1 library, providing a comprehensive set of clean, minimalist icons that align with our ultra-modern aesthetic. Icons serve as visual anchors and functional indicators, maintaining clarity across both light and dark themes while supporting our vision-inclusive design principles.
Icons communicate instantly without language barriers
Black and white variants ensure perfect contrast in all modes
Standardized sizing maintains visual harmony
The Coolicons library organizes icons into logical categories, each serving specific interface functions while maintaining design consistency.
Core UI elements for user interaction and navigation
Document, folder, and cloud storage representations
Message, alert, and social interaction indicators
Directional indicators and navigation controls
<img src="icons/coolicons.v4.1/coolicons PNG/Black/Interface/Search_Magnifying_Glass.png"
alt="Search"
class="w-5 h-5 dark:hidden">
<img src="icons/coolicons.v4.1/coolicons PNG/White/Interface/Search_Magnifying_Glass.png"
alt="Search"
class="w-5 h-5 hidden dark:block">
<button class="flex items-center gap-2 px-4 py-2">
<img src="icons/coolicons.v4.1/coolicons PNG/Black/File/File_Download.png"
alt="Download"
class="w-4 h-4 dark:hidden">
<img src="icons/coolicons.v4.1/coolicons PNG/White/File/File_Download.png"
alt="Download"
class="w-4 h-4 hidden dark:block">
Download File
</button>
<svg class="w-5 h-5 text-carbon-950 dark:text-white">
<use href="icons/coolicons.v4.1/coolicons SVG/Interface/Search_Magnifying_Glass.svg#icon"></use>
</svg>
<svg class="w-5 h-5 fill-current text-carbon-950 dark:text-white" viewBox="0 0 24 24">
<path d="M21 21L16.514 16.506M19 10.5C19 15.194 15.194 19 10.5 19S2 15.194 2 10.5 5.806 2 10.5 2 19 5.806 19 10.5Z"/>
</svg>
/* Icon sizing utilities */
.icon-xs { @apply w-3 h-3; } /* 12px - minimal inline */
.icon-sm { @apply w-4 h-4; } /* 16px - small buttons */
.icon-md { @apply w-5 h-5; } /* 20px - standard UI */
.icon-lg { @apply w-6 h-6; } /* 24px - primary actions */
.icon-xl { @apply w-8 h-8; } /* 32px - feature highlights */
/* Theme-adaptive coloring */
.icon-adaptive { @apply text-carbon-950 dark:text-white; }
.icon-accent { @apply text-mulberry-950 dark:text-paper-200; }
.icon-muted { @apply text-carbon-600 dark:text-purple-300; }
The complete Coolicons v4.1 library is available in the brand assets directory with both PNG and SVG formats.
The CHORUS brand system extends beyond standard accessibility to provide vision-inclusive design that supports users with different forms of color blindness while maintaining our sophisticated metallic aesthetic. Our approach prioritizes contrast, brightness, and texture cues over exact hue fidelity.
8%+ of male users with color blindness experience equal legibility and brand resonance
Metallic identity remains intact and aesthetically pleasing across all vision modes
Critical distinctions use shapes, icons, and labels - not just color
Our advanced accessibility system remaps the core CHORUS 8-color palette (carbon, mulberry, walnut, nickel, ocean, eucalyptus, sand, coral) to vision-deficiency appropriate alternatives while preserving the light/dark theme toggle functionality.
The system uses CSS semantic tokens with compound selectors that combine light/dark themes with accessibility modes:
.dark[data-accessibility="protanopia"] { --chorus-danger: var(--chorus-info); }
This preserves your existing theme toggle while providing vision-inclusive alternatives.
Enhanced blue/yellow contrast with metallic neutrals
data-theme="protanopia"
Blue/purple dominance with high-contrast patterns
data-theme="deuteranopia"
Red/green clarity with warm metallic tones
data-theme="tritanopia"
High-contrast monochrome with texture patterns
data-theme="achromatopsia"
The Three.js Möbius ring logo automatically adapts its metallic materials for different vision conditions while preserving the sophisticated aesthetic.
/* Logo Material Accessibility CSS */
[data-theme="protanopia"] {
--color-ring-primary: #1e40af; /* Blue-800 for logo materials */
}
[data-theme="deuteranopia"] {
--color-ring-primary: #6b21a8; /* Purple-800 for logo materials */
}
[data-theme="tritanopia"] {
--color-ring-primary: #991b1b; /* Red-800 for logo materials */
}
[data-theme="achromatopsia"] {
--color-ring-primary: #374151; /* Gray-700 for logo materials */
}
// Set accessibility theme
document.documentElement.setAttribute('data-theme', 'protanopia');
// Theme preference storage
localStorage.setItem('chorus-accessibility-theme', 'deuteranopia');
// Logo material updates
if (window.updateAllLogoMaterials) {
window.updateAllLogoMaterials(isDark);
}
// Logo materials automatically adapt
<canvas class="chorus-logo"></canvas>
// JavaScript theme switching
setAccessibilityTheme('protanopia');
Use Chrome DevTools "Emulate vision deficiencies" to validate all palettes
Maintain minimum 4.5:1 contrast ratios for WCAG AA compliance
Validate with actual users who have different vision conditions
Accessibility themes are accessible through the "Visual Aid" button in the bottom toolbar alongside the theme toggle. This keeps the main interface clean while providing discoverable accessibility options.
The CHORUS component system provides a comprehensive set of accessible, ultra-minimalist UI elements built with the 8-color accessibility system and three-font typography hierarchy.
Primary, secondary, and ghost button variants with accessibility-compliant focus states
Clean form elements with validation states and accessibility features
Header, sidebar, and breadcrumb components with responsive behavior
Complete implementation guide for the CHORUS brand system including Tailwind CSS configuration, Three.js logo integration, and accessibility features.
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
carbon: { 950: '#000000', 900: '#0a0a0a', /* ... */ },
mulberry: { 950: '#0b0213', 900: '#1a1426', /* ... */ },
walnut: { 950: '#1E1815', 900: '#403730', /* ... */ },
nickel: { 950: '#171717', 500: '#c1bfb1', /* ... */ },
ocean: { 950: '#2a3441', 600: '#3a4654', /* ... */ },
eucalyptus: { 950: '#2a3330', 600: '#3a4540', /* ... */ },
sand: { 950: '#473e2f', 600: '#6a5c46', /* ... */ },
coral: { 950: '#2e1d1c', 600: '#3e2d2c', /* ... */ }
},
fontFamily: {
sans: ["Inter Tight", "Inter", "system-ui", "sans-serif"],
mono: ["Inconsolata", "ui-monospace", "monospace"],
logo: ["Exo", "Inter Tight", "sans-serif"]
}
}
}
}
// HTML Integration
<canvas class="chorus-logo" style="width: 64px; height: 64px;"></canvas>
// JavaScript Module
import './logo.js';
// Accessibility Integration
window.updateAllLogoMaterials(isDark);
window.updateLogoAccessibilityTheme(themeName);
# Local Development Server
python3 -m http.server 3000
# Access brand guide
http://localhost:3000/chorus_brand_style_guide.html
# Test accessibility features
# Use Visual Aid button for color-blindness testing
The CHORUS color palette draws inspiration from premium natural materials in the Australian Landscape, and sophisticated technology, creating a system that works across dark digital interfaces and light print materials while maintaining accessibility and international appeal.
#000000
Usage: Primary backgrounds, high-contrast text, logo applications. Psychology: Authority, sophistication, premium quality.
#0b0213
Usage: Hero backgrounds, dark accents, secondary elements. Psychology: Richness, mystery, luxury, power, and depth.
#403730
Usage: Warm accents, secondary elements, natural touches. Psychology: Reliability, craftsmanship, approachable intelligence.
#c1bfb1
Usage: UI elements, borders, technical precision. Psychology: Modern sophistication, precision, technology.
#5a6c80
Usage: Primary actions, interactive elements, system feedback. Psychology: Trust, reliability, technological precision.
#515d54
Usage: Success states, positive feedback, growth indicators. Applications: Success messages, positive data visualization.
#8e7b5e
Usage: Warning states, attention indicators, energy elements. Applications: Warnings, attention callouts, active processes.
#593735
Usage: Error states, critical alerts, problem indicators. Applications: Error messages, critical warnings, urgent notifications.
Dark mode is the preferred default for all CHORUS Services applications
Available as alternative but dark mode is strongly preferred
The CHORUS iconography system uses the Coolicons v4.1 library, providing a comprehensive set of clean, minimalist icons that align with our ultra-modern aesthetic. Icons serve as visual anchors and functional indicators, maintaining clarity across both light and dark themes while supporting our vision-inclusive design principles.
Icons communicate instantly without language barriers
Black and white variants ensure perfect contrast in all modes
Standardized sizing maintains visual harmony
The Coolicons library organizes icons into logical categories, each serving specific interface functions while maintaining design consistency.
Core UI elements for user interaction and navigation
Document, folder, and cloud storage representations
Message, alert, and social interaction indicators
Directional indicators and navigation controls
<img src="icons/coolicons.v4.1/coolicons PNG/Black/Interface/Search_Magnifying_Glass.png"
alt="Search"
class="w-5 h-5 dark:hidden">
<img src="icons/coolicons.v4.1/coolicons PNG/White/Interface/Search_Magnifying_Glass.png"
alt="Search"
class="w-5 h-5 hidden dark:block">
<button class="flex items-center gap-2 px-4 py-2">
<img src="icons/coolicons.v4.1/coolicons PNG/Black/File/File_Download.png"
alt="Download"
class="w-4 h-4 dark:hidden">
<img src="icons/coolicons.v4.1/coolicons PNG/White/File/File_Download.png"
alt="Download"
class="w-4 h-4 hidden dark:block">
Download File
</button>
<svg class="w-5 h-5 text-carbon-950 dark:text-white">
<use href="icons/coolicons.v4.1/coolicons SVG/Interface/Search_Magnifying_Glass.svg#icon"></use>
</svg>
<svg class="w-5 h-5 fill-current text-carbon-950 dark:text-white" viewBox="0 0 24 24">
<path d="M21 21L16.514 16.506M19 10.5C19 15.194 15.194 19 10.5 19S2 15.194 2 10.5 5.806 2 10.5 2 19 5.806 19 10.5Z"/>
</svg>
/* Icon sizing utilities */
.icon-xs { @apply w-3 h-3; } /* 12px - minimal inline */
.icon-sm { @apply w-4 h-4; } /* 16px - small buttons */
.icon-md { @apply w-5 h-5; } /* 20px - standard UI */
.icon-lg { @apply w-6 h-6; } /* 24px - primary actions */
.icon-xl { @apply w-8 h-8; } /* 32px - feature highlights */
/* Theme-adaptive coloring */
.icon-adaptive { @apply text-carbon-950 dark:text-white; }
.icon-accent { @apply text-mulberry-950 dark:text-paper-200; }
.icon-muted { @apply text-carbon-600 dark:text-purple-300; }
The complete Coolicons v4.1 library is available in the brand assets directory with both PNG and SVG formats.
The CHORUS brand system extends beyond standard accessibility to provide vision-inclusive design that supports users with different forms of color blindness while maintaining our sophisticated metallic aesthetic. Our approach prioritizes contrast, brightness, and texture cues over exact hue fidelity.
8%+ of male users with color blindness experience equal legibility and brand resonance
Metallic identity remains intact and aesthetically pleasing across all vision modes
Critical distinctions use shapes, icons, and labels - not just color
Our advanced accessibility system remaps the core CHORUS 8-color palette (carbon, mulberry, walnut, nickel, ocean, eucalyptus, sand, coral) to vision-deficiency appropriate alternatives while preserving the light/dark theme toggle functionality.
The system uses CSS semantic tokens with compound selectors that combine light/dark themes with accessibility modes:
.dark[data-accessibility="protanopia"] { --chorus-danger: var(--chorus-info); }
This preserves your existing theme toggle while providing vision-inclusive alternatives.
Enhanced blue/yellow contrast with metallic neutrals
data-theme="protanopia"
Blue/purple dominance with high-contrast patterns
data-theme="deuteranopia"
Red/green clarity with warm metallic tones
data-theme="tritanopia"
High-contrast monochrome with texture patterns
data-theme="achromatopsia"
The Three.js Möbius ring logo automatically adapts its metallic materials for different vision conditions while preserving the sophisticated aesthetic.
/* Logo Material Accessibility CSS */
[data-theme="protanopia"] {
--color-ring-primary: #1e40af; /* Blue-800 for logo materials */
}
[data-theme="deuteranopia"] {
--color-ring-primary: #6b21a8; /* Purple-800 for logo materials */
}
[data-theme="tritanopia"] {
--color-ring-primary: #991b1b; /* Red-800 for logo materials */
}
[data-theme="achromatopsia"] {
--color-ring-primary: #374151; /* Gray-700 for logo materials */
}
// Set accessibility theme
document.documentElement.setAttribute('data-theme', 'protanopia');
// Theme preference storage
localStorage.setItem('chorus-accessibility-theme', 'deuteranopia');
// Logo material updates
if (window.updateAllLogoMaterials) {
window.updateAllLogoMaterials(isDark);
}
// Logo materials automatically adapt
<canvas class="chorus-logo"></canvas>
// JavaScript theme switching
setAccessibilityTheme('protanopia');
Use Chrome DevTools "Emulate vision deficiencies" to validate all palettes
Maintain minimum 4.5:1 contrast ratios for WCAG AA compliance
Validate with actual users who have different vision conditions
Accessibility themes are accessible through the "Visual Aid" button in the bottom toolbar alongside the theme toggle. This keeps the main interface clean while providing discoverable accessibility options.
The CHORUS component system provides a comprehensive set of accessible, ultra-minimalist UI elements built with the 8-color accessibility system and three-font typography hierarchy.
Primary, secondary, and ghost button variants with accessibility-compliant focus states
Clean form elements with validation states and accessibility features
Header, sidebar, and breadcrumb components with responsive behavior
Complete implementation guide for the CHORUS brand system including Tailwind CSS configuration, Three.js logo integration, and accessibility features.
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
carbon: { 950: '#000000', 900: '#0a0a0a', /* ... */ },
mulberry: { 950: '#0b0213', 900: '#1a1426', /* ... */ },
walnut: { 950: '#1E1815', 900: '#403730', /* ... */ },
nickel: { 950: '#171717', 500: '#c1bfb1', /* ... */ },
ocean: { 950: '#2a3441', 600: '#3a4654', /* ... */ },
eucalyptus: { 950: '#2a3330', 600: '#3a4540', /* ... */ },
sand: { 950: '#473e2f', 600: '#6a5c46', /* ... */ },
coral: { 950: '#2e1d1c', 600: '#3e2d2c', /* ... */ }
},
fontFamily: {
sans: ["Inter Tight", "Inter", "system-ui", "sans-serif"],
mono: ["Inconsolata", "ui-monospace", "monospace"],
logo: ["Exo", "Inter Tight", "sans-serif"]
}
}
}
}
// HTML Integration
<canvas class="chorus-logo" style="width: 64px; height: 64px;"></canvas>
// JavaScript Module
import './logo.js';
// Accessibility Integration
window.updateAllLogoMaterials(isDark);
window.updateLogoAccessibilityTheme(themeName);
# Local Development Server
python3 -m http.server 3000
# Access brand guide
http://localhost:3000/chorus_brand_style_guide.html
# Test accessibility features
# Use Visual Aid button for color-blindness testing
This comprehensive brand guide is organized with logical navigation flow. Use the sidebar menu to jump between sections, each with semantic icons for easy identification.