Crimson#C8102E
Black#000000
Gold#D4AF37
Maroon#6B0F1A
Ochre#9C7A1F
Palette direction

Wwe Inspired Sports Color Palette

This palette channels WWE’s high-energy broadcast identity with bold red, black, and metallic gold accents that feel powerful without losing brand recognition. The neutral system keeps interfaces clean and readable, while the saturated main colors preserve the dramatic, arena-level impact associated with the brand.

AnalogousNonewwewrestlingsports entertainmentbold
palette-preview.example
None color direction

Wwe Inspired Sports Color Palette

This palette channels WWE’s high-energy broadcast identity with bold red, black, and metallic gold accents that feel powerful without losing brand recognition. The neutral system keeps interfaces clean and readable, while the saturated main colors preserve the dramatic, arena-level impact associated with the brand.

Explore the color system
Logo contrast guide

Logo color pairings

ColorFly checks the palette colors against each other and suggests the clearest logo/background combinations.

Logo White #FFFFFFon Black #00000021.0:1 Excellent
Logo Black #000000on Gold #D4AF3710.0:1 Excellent
Logo White #FFFFFFon Crimson #C8102E5.9:1 Strong
Logo Black #000000on White #FFFFFF21.0:1 Excellent
Icon color
BackgroundCrimson#C8102ETextWhite#FFFFFF
Primary Button5.88:1
AA

Best for the main action users should notice first.

BackgroundBlack#000000TextWhite#FFFFFF
Secondary Button21.00:1
AAA

Useful for softer choices and secondary paths.

BackgroundWhite#FFFFFFTextBlack#000000
Outlined Button21.00:1
AAA

Good for lower-emphasis actions on light surfaces.

BackgroundWhite#FFFFFFTextBlack#000000
Text Button21.00:1
AAA

A quiet action for links, navigation, and inline decisions.

Palette composition8 colorsAnalogous color relationship
9:41Wwe Inspired Sports Color Palette Color role balance
Analogous system
60% DominantNeutrals

Backgrounds, large surfaces, whitespace, and reading comfort.

30% SecondarySupport colors

Sections, secondary UI, illustrations, and repeated brand moments.

10% AccentMain colors

High-attention moments like primary actions and memorable highlights.

CWwe Inspired Sports Color PaletteNone brand direction ColorFly.design
Strategic palette preview
Why it works

A usable
color system.

The main colors combine WWE-style signal red, deep black, and metallic gold into a high-contrast system that feels iconic on screens, in motion, and across branded touchpoints. Their relationship is more custom than strictly harmonic, because the goal is faithful WWE-style recognition rather than a textbook color wheel pairing.

Clear roles create a consistent brand experience.

Color Roles and Usage Map

Assign existing palette colors to brand, typography, and interface roles.

Brand identity

LogoUsed for logo marks and core brand symbols.Crimson #C8102E
HeadlineUsed for main titles and key messages.Crimson #C8102E
LinkUsed for links and interactive text.Black #000000

Buttons

Primary Button
BackgroundCrimson #C8102E
TextWhite #FFFFFF
Secondary Button
BackgroundBlack #000000
TextWhite #FFFFFF
Outlined Button
BackgroundBlack #000000
TextBlack #000000

Interface

TextDefault readable body text.Charcoal #111111
Bg LightLight page or section background.White #FFFFFF
Bg DarkDark page or section background.Charcoal #111111
IconSmall interface icons and marks.Maroon #6B0F1A
BorderCards, inputs, and component borders.Maroon #6B0F1A
DividerSubtle separators between content.Ochre #9C7A1F
OutlineFocus rings and emphasis outlines.Ochre #9C7A1F

Palette Colors

A compact view of the brand, support, and neutral colors that make up this system.

Main (Brand) Colors

The main colors combine WWE-style signal red, deep black, and metallic gold into a high-contrast system that feels iconic on screens, in motion, and across branded touchpoints. Their relationship is more custom than strictly harmonic, because the goal is faithful WWE-style recognition rather than a textbook color wheel pairing.

PrimaryCrimson

RolesLogo, Btn Primary Bg, Headline

Crimson delivers the signature WWE intensity and gives the palette its most immediate sense of action and impact.

HEX#C8102E
RGB200, 16, 46
HSL350, 85, 42
CMYK0, 92, 77, 22
SecondaryBlack

RolesLink, Btn Secondary Bg, Btn Outlined Border, Btn Outlined Text

Black anchors the palette with a hard-edged broadcast feel that reinforces strength and contrast.

HEX#000000
RGB0, 0, 0
HSL0, 0, 0
CMYK0, 0, 0, 100
TertiaryGold

Gold adds a championship-quality accent that elevates the palette without competing with the dominant red and black.

HEX#D4AF37
RGB212, 175, 55
HSL46, 65, 52
CMYK0, 17, 74, 17

Support Colors

The support colors soften the aggression of the main trio and add usable depth for interface states, overlays, and controlled accent moments. They stay subordinate to the WWE-inspired core while improving balance and flexibility.

Maroon

RolesIcon, Border

Maroon extends the red family with a deeper, more restrained tone that supports structure and detail.

HEX#6B0F1A
RGB107, 15, 26
HSL353, 75, 24
CMYK0, 86, 76, 58
Ochre

RolesDivider, Outline

Ochre echoes the gold accent in a quieter form, making separators and outlines feel branded without drawing too much attention.

HEX#9C7A1F
RGB156, 122, 31
HSL44, 67, 37
CMYK0, 22, 80, 39

Neutral Colors

Utility colors for backgrounds, text, borders, and balance.

White

RolesBg Light, Btn Primary Text, Btn Secondary Text

HEX#FFFFFF
RGB255, 255, 255
HSL0, 0, 100
CMYK0, 0, 0, 0
Ivory
HEX#F4F4F4
RGB244, 244, 244
HSL0, 0, 96
CMYK0, 0, 0, 4
Charcoal

RolesBg Dark, Text

HEX#111111
RGB17, 17, 17
HSL0, 0, 7
CMYK0, 0, 0, 93

Export and Handoff

Copy palette values for design systems, websites, and client handoff.

Color tokens

Use these in CSS when you want every raw palette color available by name. Best for websites, landing pages, and design system variables.

Use when: you need the actual colors.
:root {
  --color-crimson: #C8102E;
  --color-black: #000000;
  --color-gold: #D4AF37;
  --color-maroon: #6B0F1A;
  --color-ochre: #9C7A1F;
  --color-white: #FFFFFF;
  --color-ivory: #F4F4F4;
  --color-charcoal: #111111;
}

Role tokens

Use these in CSS when colors are assigned to practical jobs like text, buttons, borders, links, and backgrounds.

Use when: you need UI roles, not just swatches.
:root {
  --role-logo: #C8102E;
  --role-btn-primary-bg: #C8102E;
  --role-headline: #C8102E;
  --role-link: #000000;
  --role-btn-secondary-bg: #000000;
  --role-btn-outlined-border: #000000;
  --role-btn-outlined-text: #000000;
  --role-icon: #6B0F1A;
  --role-border: #6B0F1A;
  --role-divider: #9C7A1F;
  --role-outline: #9C7A1F;
  --role-bg-light: #FFFFFF;
  --role-btn-primary-text: #FFFFFF;
  --role-btn-secondary-text: #FFFFFF;
  --role-bg-dark: #111111;
  --role-text: #111111;
}

JSON

Use this structured palette data in apps, generators, plugins, or tools that need to read the palette programmatically.

Use when: a developer or app needs data.
{
    "crimson": "#C8102E",
    "black": "#000000",
    "gold": "#D4AF37",
    "maroon": "#6B0F1A",
    "ochre": "#9C7A1F",
    "white": "#FFFFFF",
    "ivory": "#F4F4F4",
    "charcoal": "#111111"
}
Press Space to load new palette