HEX: #CCAEBD
RGB: (204,174,189)
#CCAEBD contains red, green and blue colors in about the same proportion. Web safe color of #CCAEBD is #CC99CC (or #C9C).
#CCAEBD color RGB value is (204,174,189).
RGB: (204,174,189) (80%,68%,74%)
R 204 of 255 = 80%
G 174 of 255 = 68%
B 189 of 255 = 74%
R + G + B ~ 74%. #CCAEBD is quite light color.
R + G + B =
204 + 174 + 189 = 567 (100%)
R 204 of 567 ~ 35.98%
G 174 of 567 ~ 30.69%
B 189 of 567 ~ 33.33%
#CCAEBD color CMYK value is (0,15,7,20).
CMYK: (0,15,7,20) C0M15Y7K20 (0%,15%,7%,20%) (0.00/0.15/0.07/0.20)
CC | AE | BD | |
---|---|---|---|
RGB | 204 | 174 | 189 |
HSL | 330° | 22.73% | 74.12% |
HSB/HSV | 330° | 14.71% | 80.00% |
CMYK | 0.00% | 14.71% | 7.35% |
20.00% |
HEX | CC | AE | BD |
Decimal | 204 | 174 | 189 |
Binary | 11001100 | 10101110 | 10111101 |
Octal | 314 | 256 | 275 |
Examples of css and html codes for elements with #CCAEBD color. Also use rgb(204,174,189) instead hex code.
.myTextColor { color: #CCAEBD; }
<p style="color:#CCAEBD">This sample text font color is #CCAEBD.</p>
This text font color is #CCAEBD.
.myBgColor { background-color: #CCAEBD; }
<div style="background-color:#CCAEBD">Inner text</div>
This div background color is #CCAEBD.
.myBorderColor { border: 1px solid #CCAEBD; }
<div style="border:3px solid #CCAEBD">Div</div>
This div border color is #CCAEBD.
.myOpacity80 { color: #CCAEBD; opacity: 0.8; }
<p style="color:#CCAEBD;opacity:0.8;">80%</p>
Text with #CCAEBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCAEBD;}
<p style="text-shadow: 3px 3px 1px #CCAEBD">Text here.</p>
This text has shadow with #CCAEBD color.
.textShadow {text-shadow: 3px 3px 1px #CCAEBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCAEBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCAEBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCAEBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCAEBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCAEBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCAEBD; -webkit-box-shadow: 1px 1px 3px 2px #CCAEBD; box-shadow: 1px 1px 3px 2px #CCAEBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCAEBD; -webkit-box-shadow: 1px 1px 3px 2px #CCAEBD; box-shadow:1px 1px 3px 2px #CCAEBD;">
Div content here</div>
This text has color #CCAEBD on black background.
This text has color #CCAEBD on white background.
This text has black color on #CCAEBD background.
This text has white color on #CCAEBD background.