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