HEX: #BDFAEB
RGB: (189,250,235)
#BDFAEB contains mainly green and blue colors. Web safe color of #BDFAEB is #CCFFFF (or #CFF).
#BDFAEB color RGB value is (189,250,235).
RGB: (189,250,235) (74%,98%,92%)
R 189 of 255 = 74%
G 250 of 255 = 98%
B 235 of 255 = 92%
R + G + B ~ 88%. #BDFAEB is light color.
R + G + B =
189 + 250 + 235 = 674 (100%)
R 189 of 674 ~ 28.04%
G 250 of 674 ~ 37.09%
B 235 of 674 ~ 34.87%
#BDFAEB color CMYK value is (24,0,6,2).
CMYK: (24,0,6,2) C24M0Y6K2 (24%,0%,6%,2%) (0.24/0.00/0.06/0.02)
BD | FA | EB | |
---|---|---|---|
RGB | 189 | 250 | 235 |
HSL | 165° | 85.92% | 86.08% |
HSB/HSV | 165° | 24.40% | 98.04% |
CMYK | 24.40% | 0.00% | 6.00% |
1.96% |
HEX | BD | FA | EB |
Decimal | 189 | 250 | 235 |
Binary | 10111101 | 11111010 | 11101011 |
Octal | 275 | 372 | 353 |
Examples of css and html codes for elements with #BDFAEB color. Also use rgb(189,250,235) instead hex code.
.myTextColor { color: #BDFAEB; }
<p style="color:#BDFAEB">This sample text font color is #BDFAEB.</p>
This text font color is #BDFAEB.
.myBgColor { background-color: #BDFAEB; }
<div style="background-color:#BDFAEB">Inner text</div>
This div background color is #BDFAEB.
.myBorderColor { border: 1px solid #BDFAEB; }
<div style="border:3px solid #BDFAEB">Div</div>
This div border color is #BDFAEB.
.myOpacity80 { color: #BDFAEB; opacity: 0.8; }
<p style="color:#BDFAEB;opacity:0.8;">80%</p>
Text with #BDFAEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDFAEB;}
<p style="text-shadow: 3px 3px 1px #BDFAEB">Text here.</p>
This text has shadow with #BDFAEB color.
.textShadow {text-shadow: 3px 3px 1px #BDFAEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDFAEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDFAEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDFAEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDFAEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDFAEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDFAEB; -webkit-box-shadow: 1px 1px 3px 2px #BDFAEB; box-shadow: 1px 1px 3px 2px #BDFAEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDFAEB; -webkit-box-shadow: 1px 1px 3px 2px #BDFAEB; box-shadow:1px 1px 3px 2px #BDFAEB;">
Div content here</div>
This text has color #BDFAEB on black background.
This text has color #BDFAEB on white background.
This text has black color on #BDFAEB background.
This text has white color on #BDFAEB background.