HEX: #C3527B
RGB: (195,82,123)
#C3527B contains mainly red color. Web safe color of #C3527B is #CC6666 (or #C66).
#C3527B color RGB value is (195,82,123).
RGB: (195,82,123) (76%,32%,48%)
R 195 of 255 = 76%
G 82 of 255 = 32%
B 123 of 255 = 48%
R + G + B ~ 52%. #C3527B is middle color (not dark and not light).
R + G + B =
195 + 82 + 123 = 400 (100%)
R 195 of 400 ~ 48.75%
G 82 of 400 ~ 20.5%
B 123 of 400 ~ 30.75%
#C3527B color CMYK value is (0,58,37,24).
CMYK: (0,58,37,24) C0M58Y37K24 (0%,58%,37%,24%) (0.00/0.58/0.37/0.24)
C3 | 52 | 7B | |
---|---|---|---|
RGB | 195 | 82 | 123 |
HSL | 338° | 48.50% | 54.31% |
HSB/HSV | 338° | 57.95% | 76.47% |
CMYK | 0.00% | 57.95% | 36.92% |
23.53% |
HEX | C3 | 52 | 7B |
Decimal | 195 | 82 | 123 |
Binary | 11000011 | 1010010 | 1111011 |
Octal | 303 | 122 | 173 |
Examples of css and html codes for elements with #C3527B color. Also use rgb(195,82,123) instead hex code.
.myTextColor { color: #C3527B; }
<p style="color:#C3527B">This sample text font color is #C3527B.</p>
This text font color is #C3527B.
.myBgColor { background-color: #C3527B; }
<div style="background-color:#C3527B">Inner text</div>
This div background color is #C3527B.
.myBorderColor { border: 1px solid #C3527B; }
<div style="border:3px solid #C3527B">Div</div>
This div border color is #C3527B.
.myOpacity80 { color: #C3527B; opacity: 0.8; }
<p style="color:#C3527B;opacity:0.8;">80%</p>
Text with #C3527B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C3527B;}
<p style="text-shadow: 3px 3px 1px #C3527B">Text here.</p>
This text has shadow with #C3527B color.
.textShadow {text-shadow: 3px 3px 1px #C3527B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C3527B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C3527B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C3527B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C3527B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C3527B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C3527B; -webkit-box-shadow: 1px 1px 3px 2px #C3527B; box-shadow: 1px 1px 3px 2px #C3527B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C3527B; -webkit-box-shadow: 1px 1px 3px 2px #C3527B; box-shadow:1px 1px 3px 2px #C3527B;">
Div content here</div>
This text has color #C3527B on black background.
This text has color #C3527B on white background.
This text has black color on #C3527B background.
This text has white color on #C3527B background.