HEX: #C4759B
RGB: (196,117,155)
#C4759B contains mainly red and blue colors. Web safe color of #C4759B is #CC6699 (or #C69).
#C4759B color RGB value is (196,117,155).
RGB: (196,117,155) (77%,46%,61%)
R 196 of 255 = 77%
G 117 of 255 = 46%
B 155 of 255 = 61%
R + G + B ~ 61%. #C4759B is quite light color.
R + G + B =
196 + 117 + 155 = 468 (100%)
R 196 of 468 ~ 41.88%
G 117 of 468 ~ 25%
B 155 of 468 ~ 33.12%
#C4759B color CMYK value is (0,40,21,23).
CMYK: (0,40,21,23) C0M40Y21K23 (0%,40%,21%,23%) (0.00/0.40/0.21/0.23)
C4 | 75 | 9B | |
---|---|---|---|
RGB | 196 | 117 | 155 |
HSL | 331° | 40.10% | 61.37% |
HSB/HSV | 331° | 40.31% | 76.86% |
CMYK | 0.00% | 40.31% | 20.92% |
23.14% |
HEX | C4 | 75 | 9B |
Decimal | 196 | 117 | 155 |
Binary | 11000100 | 1110101 | 10011011 |
Octal | 304 | 165 | 233 |
Examples of css and html codes for elements with #C4759B color. Also use rgb(196,117,155) instead hex code.
.myTextColor { color: #C4759B; }
<p style="color:#C4759B">This sample text font color is #C4759B.</p>
This text font color is #C4759B.
.myBgColor { background-color: #C4759B; }
<div style="background-color:#C4759B">Inner text</div>
This div background color is #C4759B.
.myBorderColor { border: 1px solid #C4759B; }
<div style="border:3px solid #C4759B">Div</div>
This div border color is #C4759B.
.myOpacity80 { color: #C4759B; opacity: 0.8; }
<p style="color:#C4759B;opacity:0.8;">80%</p>
Text with #C4759B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4759B;}
<p style="text-shadow: 3px 3px 1px #C4759B">Text here.</p>
This text has shadow with #C4759B color.
.textShadow {text-shadow: 3px 3px 1px #C4759B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4759B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4759B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4759B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4759B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4759B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4759B; -webkit-box-shadow: 1px 1px 3px 2px #C4759B; box-shadow: 1px 1px 3px 2px #C4759B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4759B; -webkit-box-shadow: 1px 1px 3px 2px #C4759B; box-shadow:1px 1px 3px 2px #C4759B;">
Div content here</div>
This text has color #C4759B on black background.
This text has color #C4759B on white background.
This text has black color on #C4759B background.
This text has white color on #C4759B background.