HEX: #CBADE6
RGB: (203,173,230)
#CBADE6 contains red, green and blue colors in about the same proportion. Web safe color of #CBADE6 is #CC99CC (or #C9C).
#CBADE6 color RGB value is (203,173,230).
RGB: (203,173,230) (80%,68%,90%)
R 203 of 255 = 80%
G 173 of 255 = 68%
B 230 of 255 = 90%
R + G + B ~ 79%. #CBADE6 is quite light color.
R + G + B =
203 + 173 + 230 = 606 (100%)
R 203 of 606 ~ 33.5%
G 173 of 606 ~ 28.55%
B 230 of 606 ~ 37.95%
#CBADE6 color CMYK value is (12,25,0,10).
CMYK: (12,25,0,10) C12M25Y0K10 (12%,25%,0%,10%) (0.12/0.25/0.00/0.10)
CB | AD | E6 | |
---|---|---|---|
RGB | 203 | 173 | 230 |
HSL | 272° | 53.27% | 79.02% |
HSB/HSV | 272° | 24.78% | 90.20% |
CMYK | 11.74% | 24.78% | 0.00% |
9.80% |
HEX | CB | AD | E6 |
Decimal | 203 | 173 | 230 |
Binary | 11001011 | 10101101 | 11100110 |
Octal | 313 | 255 | 346 |
Examples of css and html codes for elements with #CBADE6 color. Also use rgb(203,173,230) instead hex code.
.myTextColor { color: #CBADE6; }
<p style="color:#CBADE6">This sample text font color is #CBADE6.</p>
This text font color is #CBADE6.
.myBgColor { background-color: #CBADE6; }
<div style="background-color:#CBADE6">Inner text</div>
This div background color is #CBADE6.
.myBorderColor { border: 1px solid #CBADE6; }
<div style="border:3px solid #CBADE6">Div</div>
This div border color is #CBADE6.
.myOpacity80 { color: #CBADE6; opacity: 0.8; }
<p style="color:#CBADE6;opacity:0.8;">80%</p>
Text with #CBADE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CBADE6;}
<p style="text-shadow: 3px 3px 1px #CBADE6">Text here.</p>
This text has shadow with #CBADE6 color.
.textShadow {text-shadow: 3px 3px 1px #CBADE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CBADE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #CBADE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CBADE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CBADE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #CBADE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CBADE6; -webkit-box-shadow: 1px 1px 3px 2px #CBADE6; box-shadow: 1px 1px 3px 2px #CBADE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CBADE6; -webkit-box-shadow: 1px 1px 3px 2px #CBADE6; box-shadow:1px 1px 3px 2px #CBADE6;">
Div content here</div>
This text has color #CBADE6 on black background.
This text has color #CBADE6 on white background.
This text has black color on #CBADE6 background.
This text has white color on #CBADE6 background.