HEX: #C4588E
RGB: (196,88,142)
#C4588E contains mainly red and blue colors. Web safe color of #C4588E is #CC6699 (or #C69).
#C4588E color RGB value is (196,88,142).
RGB: (196,88,142) (77%,35%,56%)
R 196 of 255 = 77%
G 88 of 255 = 35%
B 142 of 255 = 56%
R + G + B ~ 56%. #C4588E is middle color (not dark and not light).
R + G + B =
196 + 88 + 142 = 426 (100%)
R 196 of 426 ~ 46.01%
G 88 of 426 ~ 20.66%
B 142 of 426 ~ 33.33%
#C4588E color CMYK value is (0,55,28,23).
CMYK: (0,55,28,23) C0M55Y28K23 (0%,55%,28%,23%) (0.00/0.55/0.28/0.23)
C4 | 58 | 8E | |
---|---|---|---|
RGB | 196 | 88 | 142 |
HSL | 330° | 47.79% | 55.69% |
HSB/HSV | 330° | 55.10% | 76.86% |
CMYK | 0.00% | 55.10% | 27.55% |
23.14% |
HEX | C4 | 58 | 8E |
Decimal | 196 | 88 | 142 |
Binary | 11000100 | 1011000 | 10001110 |
Octal | 304 | 130 | 216 |
Examples of css and html codes for elements with #C4588E color. Also use rgb(196,88,142) instead hex code.
.myTextColor { color: #C4588E; }
<p style="color:#C4588E">This sample text font color is #C4588E.</p>
This text font color is #C4588E.
.myBgColor { background-color: #C4588E; }
<div style="background-color:#C4588E">Inner text</div>
This div background color is #C4588E.
.myBorderColor { border: 1px solid #C4588E; }
<div style="border:3px solid #C4588E">Div</div>
This div border color is #C4588E.
.myOpacity80 { color: #C4588E; opacity: 0.8; }
<p style="color:#C4588E;opacity:0.8;">80%</p>
Text with #C4588E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4588E;}
<p style="text-shadow: 3px 3px 1px #C4588E">Text here.</p>
This text has shadow with #C4588E color.
.textShadow {text-shadow: 3px 3px 1px #C4588E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4588E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4588E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4588E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4588E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4588E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4588E; -webkit-box-shadow: 1px 1px 3px 2px #C4588E; box-shadow: 1px 1px 3px 2px #C4588E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4588E; -webkit-box-shadow: 1px 1px 3px 2px #C4588E; box-shadow:1px 1px 3px 2px #C4588E;">
Div content here</div>
This text has color #C4588E on black background.
This text has color #C4588E on white background.
This text has black color on #C4588E background.
This text has white color on #C4588E background.