HEX: #C38892
RGB: (195,136,146)
#C38892 contains red, green and blue colors in about the same proportion. Web safe color of #C38892 is #CC9999 (or #C99).
#C38892 color RGB value is (195,136,146).
RGB: (195,136,146) (76%,53%,57%)
R 195 of 255 = 76%
G 136 of 255 = 53%
B 146 of 255 = 57%
R + G + B ~ 62%. #C38892 is quite light color.
R + G + B =
195 + 136 + 146 = 477 (100%)
R 195 of 477 ~ 40.88%
G 136 of 477 ~ 28.51%
B 146 of 477 ~ 30.61%
#C38892 color CMYK value is (0,30,25,24).
CMYK: (0,30,25,24) C0M30Y25K24 (0%,30%,25%,24%) (0.00/0.30/0.25/0.24)
C3 | 88 | 92 | |
---|---|---|---|
RGB | 195 | 136 | 146 |
HSL | 350° | 32.96% | 64.90% |
HSB/HSV | 350° | 30.26% | 76.47% |
CMYK | 0.00% | 30.26% | 25.13% |
23.53% |
HEX | C3 | 88 | 92 |
Decimal | 195 | 136 | 146 |
Binary | 11000011 | 10001000 | 10010010 |
Octal | 303 | 210 | 222 |
Examples of css and html codes for elements with #C38892 color. Also use rgb(195,136,146) instead hex code.
.myTextColor { color: #C38892; }
<p style="color:#C38892">This sample text font color is #C38892.</p>
This text font color is #C38892.
.myBgColor { background-color: #C38892; }
<div style="background-color:#C38892">Inner text</div>
This div background color is #C38892.
.myBorderColor { border: 1px solid #C38892; }
<div style="border:3px solid #C38892">Div</div>
This div border color is #C38892.
.myOpacity80 { color: #C38892; opacity: 0.8; }
<p style="color:#C38892;opacity:0.8;">80%</p>
Text with #C38892 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C38892;}
<p style="text-shadow: 3px 3px 1px #C38892">Text here.</p>
This text has shadow with #C38892 color.
.textShadow {text-shadow: 3px 3px 1px #C38892, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C38892, 5px 5px 20px red">Text here.</p>
This text has shadow with #C38892 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C38892, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C38892, Direction=45, Strength=4)">Text</p>
This text has shadow with #C38892 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C38892; -webkit-box-shadow: 1px 1px 3px 2px #C38892; box-shadow: 1px 1px 3px 2px #C38892; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C38892; -webkit-box-shadow: 1px 1px 3px 2px #C38892; box-shadow:1px 1px 3px 2px #C38892;">
Div content here</div>
This text has color #C38892 on black background.
This text has color #C38892 on white background.
This text has black color on #C38892 background.
This text has white color on #C38892 background.