HEX: #C495AE
RGB: (196,149,174)
#C495AE contains red, green and blue colors in about the same proportion. Web safe color of #C495AE is #CC9999 (or #C99).
#C495AE color RGB value is (196,149,174).
RGB: (196,149,174) (77%,58%,68%)
R 196 of 255 = 77%
G 149 of 255 = 58%
B 174 of 255 = 68%
R + G + B ~ 68%. #C495AE is quite light color.
R + G + B =
196 + 149 + 174 = 519 (100%)
R 196 of 519 ~ 37.76%
G 149 of 519 ~ 28.71%
B 174 of 519 ~ 33.53%
#C495AE color CMYK value is (0,24,11,23).
CMYK: (0,24,11,23) C0M24Y11K23 (0%,24%,11%,23%) (0.00/0.24/0.11/0.23)
C4 | 95 | AE | |
---|---|---|---|
RGB | 196 | 149 | 174 |
HSL | 328° | 28.48% | 67.65% |
HSB/HSV | 328° | 23.98% | 76.86% |
CMYK | 0.00% | 23.98% | 11.22% |
23.14% |
HEX | C4 | 95 | AE |
Decimal | 196 | 149 | 174 |
Binary | 11000100 | 10010101 | 10101110 |
Octal | 304 | 225 | 256 |
Examples of css and html codes for elements with #C495AE color. Also use rgb(196,149,174) instead hex code.
.myTextColor { color: #C495AE; }
<p style="color:#C495AE">This sample text font color is #C495AE.</p>
This text font color is #C495AE.
.myBgColor { background-color: #C495AE; }
<div style="background-color:#C495AE">Inner text</div>
This div background color is #C495AE.
.myBorderColor { border: 1px solid #C495AE; }
<div style="border:3px solid #C495AE">Div</div>
This div border color is #C495AE.
.myOpacity80 { color: #C495AE; opacity: 0.8; }
<p style="color:#C495AE;opacity:0.8;">80%</p>
Text with #C495AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C495AE;}
<p style="text-shadow: 3px 3px 1px #C495AE">Text here.</p>
This text has shadow with #C495AE color.
.textShadow {text-shadow: 3px 3px 1px #C495AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C495AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C495AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C495AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C495AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C495AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C495AE; -webkit-box-shadow: 1px 1px 3px 2px #C495AE; box-shadow: 1px 1px 3px 2px #C495AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C495AE; -webkit-box-shadow: 1px 1px 3px 2px #C495AE; box-shadow:1px 1px 3px 2px #C495AE;">
Div content here</div>
This text has color #C495AE on black background.
This text has color #C495AE on white background.
This text has black color on #C495AE background.
This text has white color on #C495AE background.