What Color Is C15567?

The hex code #C15567 produces a soft medium red. It breaks down into RGB channels of 193 red, 85 green, and 103 blue, placing it firmly in the red color family. On the HSL model, it sits at 350° on the color wheel with 47% saturation — giving it a muted quality — and 55% lightness, making it medium. The perceived brightness is 47% (119/255), meaning light text (#ffffff) will provide optimal readability when layered on top.

C15567 Color Values

FormatValueUsage
HEX#C15567CSS, HTML, SVG
RGB193, 85, 103Screens, CSS, JavaScript
HSL350°, 47%, 55%CSS, Design tools
CMYK0%, 56%, 47%, 24%Print, packaging
Brightness47% (119/255)Accessibility checks
FamilyredColor classification
TemperaturewarmDesign psychology

What Does C15567 Mean in Design?

Red colors evoke passion, energy, urgency, and emotional intensity. As a medium variant with 47% saturation, #C15567 carries a muted energy that makes it suitable for both primary and supporting roles in design systems. In color psychology, red tones are associated with warmth and approachability, making #C15567 ideal for brands that need to project friendliness and enthusiasm.

Where to Use C15567 — Practical Applications

Website hero sections — Use #C15567 as a full-bleed background with light text (#ffffff) overlay text for immediate visual impact on landing pages.
UI card backgrounds — Apply at 15% opacity (rgba(193, 85, 103, 0.15)) for subtle card surfaces that add depth without overwhelming content.
Button accent color — Set as the primary CTA button color with a darker hover state (#9A4452) for clear interactive feedback.
Brand identity systems — Anchor a brand palette with #C15567 as the primary swatch, using #56C2B0 as the complementary accent.
Data visualization — Use in chart legends and graph bars. Pair with #68C256 and #5668C2 for a triadic scheme that maximizes readability.
Social media templates — Create cohesive Instagram stories and LinkedIn banners using #C15567 backgrounds with white typography overlays.
Email marketing headers — Apply as the top banner gradient from #C15567 to #D0808D for eye-catching newsletter designs.
Mobile app theming — Set as the navigation bar and status bar color on both iOS and Android for a consistent, branded mobile experience.

C15567 Color Combinations

These are mathematically calculated color harmonies based on the 350° hue position of #C15567 on the color wheel. Use them to build balanced, professional palettes.

Similar Colors to C15567

Colors visually close to #C15567 with subtle variations in hue, saturation, or brightness. Useful for creating gradient transitions, hover states, and layered interface designs.

Tints and Shades of C15567

A tint is made by mixing #C15567 with white (increasing lightness), while a shade is made by mixing with black (decreasing lightness). These variations are essential for creating depth, hierarchy, and interactive states in UI design.

Lighter 75%: #D0808D
Lighter 50%: #E0AAB3
Lighter 25%: #F0D4D9
Base Color: #C15567
Darker 20%: #9A4452
Darker 40%: #74333E
Darker 60%: #4D2229

How to Use C15567 in CSS

Copy-ready CSS code snippets for implementing #C15567 in your stylesheets. Includes custom properties, gradients, and opacity variants.

.element {
    color: #C15567;
    background-color: #C15567;
    border: 2px solid #C15567;
    box-shadow: 0 4px 14px rgba(193, 85, 103, 0.35);
}

/* CSS Custom Property */
:root {
    --color-primary: #C15567;
    --color-primary-light: #D0808D;
    --color-primary-dark: #9A4452;
    --color-primary-rgb: 193, 85, 103;
}

/* Gradient example */
.gradient-bg {
    background: linear-gradient(135deg, #C15567 0%, #C27A56 100%);
}

/* RGBA with opacity */
.overlay {
    background: rgba(193, 85, 103, 0.15);
}

C15567 in Design Systems

When integrating #C15567 into a design system, define it as a semantic token: --color-red-medium: #C15567;. For WCAG 2.1 AA compliance, pair it with light text (#ffffff) for body text. The lighter tint #D0808D works for subtle surface fills, while the darker shade #9A4452 is ideal for focus rings and active states. In Figma or Sketch, add it to your shared library as Red/Medium so the entire team references the single source of truth.

Accessibility Considerations for C15567

Since #C15567 is a dark color (brightness 47%), use light text (#ffffff or #f0f0f0) for readable contrast that meets WCAG 2.1 AA minimum requirements. Always test with tools like the ColorPickerCode contrast checker before shipping to production.

Frequently Asked Questions About C15567

What color is #C15567?
#C15567 is a soft medium red with RGB(193, 85, 103) and HSL(350°, 47%, 55%). It belongs to the red family.
What is the RGB value of C15567?
RGB(193, 85, 103). Red=193, Green=85, Blue=103. Each channel ranges from 0 to 255.
Is #C15567 dark or light?
Perceived brightness is 119/255 (47%), classified as medium. Use light text (#ffffff) for body text.
What is the CMYK of C15567?
CMYK: 0%, 56%, 47%, 24%. Use this for print reproduction of #C15567.
What colors go well with #C15567?
Complementary: #56C2B0. Analogous: #C27A56 & #C2569E. Triadic: #68C256 & #5668C2.
How do I use C15567 in CSS?
color: #C15567; for text, background-color: #C15567; for backgrounds, border: 2px solid #C15567; for borders.
What is the HSL of #C15567?
HSL: 350°, 47%, 55%. Hue 350°, saturation 47%, lightness 55%.
Can #C15567 be used for branding?
Yes. Test in both RGB (screens) and CMYK (print). Pair with #ffffff for text. The red family projects warmth and energy.