HEX: #C09EAE
RGB: (192,158,174)
#C09EAE contains red, green and blue colors in about the same proportion. Web safe color of #C09EAE is #CC9999 (or #C99).
#C09EAE color RGB value is (192,158,174).
RGB: (192,158,174) (75%,62%,68%)
R 192 of 255 = 75%
G 158 of 255 = 62%
B 174 of 255 = 68%
R + G + B ~ 68%. #C09EAE is quite light color.
R + G + B =
192 + 158 + 174 = 524 (100%)
R 192 of 524 ~ 36.64%
G 158 of 524 ~ 30.15%
B 174 of 524 ~ 33.21%
#C09EAE color CMYK value is (0,18,9,25).
CMYK: (0,18,9,25) C0M18Y9K25 (0%,18%,9%,25%) (0.00/0.18/0.09/0.25)
C0 | 9E | AE | |
---|---|---|---|
RGB | 192 | 158 | 174 |
HSL | 332° | 21.25% | 68.63% |
HSB/HSV | 332° | 17.71% | 75.29% |
CMYK | 0.00% | 17.71% | 9.38% |
24.71% |
HEX | C0 | 9E | AE |
Decimal | 192 | 158 | 174 |
Binary | 11000000 | 10011110 | 10101110 |
Octal | 300 | 236 | 256 |
Examples of css and html codes for elements with #C09EAE color. Also use rgb(192,158,174) instead hex code.
.myTextColor { color: #C09EAE; }
<p style="color:#C09EAE">This sample text font color is #C09EAE.</p>
This text font color is #C09EAE.
.myBgColor { background-color: #C09EAE; }
<div style="background-color:#C09EAE">Inner text</div>
This div background color is #C09EAE.
.myBorderColor { border: 1px solid #C09EAE; }
<div style="border:3px solid #C09EAE">Div</div>
This div border color is #C09EAE.
.myOpacity80 { color: #C09EAE; opacity: 0.8; }
<p style="color:#C09EAE;opacity:0.8;">80%</p>
Text with #C09EAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C09EAE;}
<p style="text-shadow: 3px 3px 1px #C09EAE">Text here.</p>
This text has shadow with #C09EAE color.
.textShadow {text-shadow: 3px 3px 1px #C09EAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C09EAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C09EAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C09EAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C09EAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C09EAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C09EAE; -webkit-box-shadow: 1px 1px 3px 2px #C09EAE; box-shadow: 1px 1px 3px 2px #C09EAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C09EAE; -webkit-box-shadow: 1px 1px 3px 2px #C09EAE; box-shadow:1px 1px 3px 2px #C09EAE;">
Div content here</div>
This text has color #C09EAE on black background.
This text has color #C09EAE on white background.
This text has black color on #C09EAE background.
This text has white color on #C09EAE background.