HEX: #BADEEB
RGB: (186,222,235)
#BADEEB contains red, green and blue colors in about the same proportion. Web safe color of #BADEEB is #CCCCFF (or #CCF).
#BADEEB color RGB value is (186,222,235).
RGB: (186,222,235) (73%,87%,92%)
R 186 of 255 = 73%
G 222 of 255 = 87%
B 235 of 255 = 92%
R + G + B ~ 84%. #BADEEB is quite light color.
R + G + B =
186 + 222 + 235 = 643 (100%)
R 186 of 643 ~ 28.93%
G 222 of 643 ~ 34.53%
B 235 of 643 ~ 36.55%
#BADEEB color CMYK value is (21,6,0,8).
CMYK: (21,6,0,8) C21M6Y0K8 (21%,6%,0%,8%) (0.21/0.06/0.00/0.08)
BA | DE | EB | |
---|---|---|---|
RGB | 186 | 222 | 235 |
HSL | 196° | 55.06% | 82.55% |
HSB/HSV | 196° | 20.85% | 92.16% |
CMYK | 20.85% | 5.53% | 0.00% |
7.84% |
HEX | BA | DE | EB |
Decimal | 186 | 222 | 235 |
Binary | 10111010 | 11011110 | 11101011 |
Octal | 272 | 336 | 353 |
Examples of css and html codes for elements with #BADEEB color. Also use rgb(186,222,235) instead hex code.
.myTextColor { color: #BADEEB; }
<p style="color:#BADEEB">This sample text font color is #BADEEB.</p>
This text font color is #BADEEB.
.myBgColor { background-color: #BADEEB; }
<div style="background-color:#BADEEB">Inner text</div>
This div background color is #BADEEB.
.myBorderColor { border: 1px solid #BADEEB; }
<div style="border:3px solid #BADEEB">Div</div>
This div border color is #BADEEB.
.myOpacity80 { color: #BADEEB; opacity: 0.8; }
<p style="color:#BADEEB;opacity:0.8;">80%</p>
Text with #BADEEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BADEEB;}
<p style="text-shadow: 3px 3px 1px #BADEEB">Text here.</p>
This text has shadow with #BADEEB color.
.textShadow {text-shadow: 3px 3px 1px #BADEEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BADEEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BADEEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BADEEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BADEEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BADEEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BADEEB; -webkit-box-shadow: 1px 1px 3px 2px #BADEEB; box-shadow: 1px 1px 3px 2px #BADEEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BADEEB; -webkit-box-shadow: 1px 1px 3px 2px #BADEEB; box-shadow:1px 1px 3px 2px #BADEEB;">
Div content here</div>
This text has color #BADEEB on black background.
This text has color #BADEEB on white background.
This text has black color on #BADEEB background.
This text has white color on #BADEEB background.