HEX: #BADDEC
RGB: (186,221,236)
#BADDEC contains red, green and blue colors in about the same proportion. Web safe color of #BADDEC is #CCCCFF (or #CCF).
#BADDEC color RGB value is (186,221,236).
RGB: (186,221,236) (73%,87%,93%)
R 186 of 255 = 73%
G 221 of 255 = 87%
B 236 of 255 = 93%
R + G + B ~ 84%. #BADDEC is quite light color.
R + G + B =
186 + 221 + 236 = 643 (100%)
R 186 of 643 ~ 28.93%
G 221 of 643 ~ 34.37%
B 236 of 643 ~ 36.7%
#BADDEC color CMYK value is (21,6,0,7).
CMYK: (21,6,0,7) C21M6Y0K7 (21%,6%,0%,7%) (0.21/0.06/0.00/0.07)
BA | DD | EC | |
---|---|---|---|
RGB | 186 | 221 | 236 |
HSL | 198° | 56.82% | 82.75% |
HSB/HSV | 198° | 21.19% | 92.55% |
CMYK | 21.19% | 6.36% | 0.00% |
7.45% |
HEX | BA | DD | EC |
Decimal | 186 | 221 | 236 |
Binary | 10111010 | 11011101 | 11101100 |
Octal | 272 | 335 | 354 |
Examples of css and html codes for elements with #BADDEC color. Also use rgb(186,221,236) instead hex code.
.myTextColor { color: #BADDEC; }
<p style="color:#BADDEC">This sample text font color is #BADDEC.</p>
This text font color is #BADDEC.
.myBgColor { background-color: #BADDEC; }
<div style="background-color:#BADDEC">Inner text</div>
This div background color is #BADDEC.
.myBorderColor { border: 1px solid #BADDEC; }
<div style="border:3px solid #BADDEC">Div</div>
This div border color is #BADDEC.
.myOpacity80 { color: #BADDEC; opacity: 0.8; }
<p style="color:#BADDEC;opacity:0.8;">80%</p>
Text with #BADDEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BADDEC;}
<p style="text-shadow: 3px 3px 1px #BADDEC">Text here.</p>
This text has shadow with #BADDEC color.
.textShadow {text-shadow: 3px 3px 1px #BADDEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BADDEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BADDEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BADDEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BADDEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BADDEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BADDEC; -webkit-box-shadow: 1px 1px 3px 2px #BADDEC; box-shadow: 1px 1px 3px 2px #BADDEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BADDEC; -webkit-box-shadow: 1px 1px 3px 2px #BADDEC; box-shadow:1px 1px 3px 2px #BADDEC;">
Div content here</div>
This text has color #BADDEC on black background.
This text has color #BADDEC on white background.
This text has black color on #BADDEC background.
This text has white color on #BADDEC background.