HEX: #BEDBFB
RGB: (190,219,251)
#BEDBFB contains mainly green and blue colors. Web safe color of #BEDBFB is #CCCCFF (or #CCF).
#BEDBFB color RGB value is (190,219,251).
RGB: (190,219,251) (75%,86%,98%)
R 190 of 255 = 75%
G 219 of 255 = 86%
B 251 of 255 = 98%
R + G + B ~ 86%. #BEDBFB is light color.
R + G + B =
190 + 219 + 251 = 660 (100%)
R 190 of 660 ~ 28.79%
G 219 of 660 ~ 33.18%
B 251 of 660 ~ 38.03%
#BEDBFB color CMYK value is (24,13,0,2).
CMYK: (24,13,0,2) C24M13Y0K2 (24%,13%,0%,2%) (0.24/0.13/0.00/0.02)
BE | DB | FB | |
---|---|---|---|
RGB | 190 | 219 | 251 |
HSL | 211° | 88.41% | 86.47% |
HSB/HSV | 211° | 24.30% | 98.43% |
CMYK | 24.30% | 12.75% | 0.00% |
1.57% |
HEX | BE | DB | FB |
Decimal | 190 | 219 | 251 |
Binary | 10111110 | 11011011 | 11111011 |
Octal | 276 | 333 | 373 |
Examples of css and html codes for elements with #BEDBFB color. Also use rgb(190,219,251) instead hex code.
.myTextColor { color: #BEDBFB; }
<p style="color:#BEDBFB">This sample text font color is #BEDBFB.</p>
This text font color is #BEDBFB.
.myBgColor { background-color: #BEDBFB; }
<div style="background-color:#BEDBFB">Inner text</div>
This div background color is #BEDBFB.
.myBorderColor { border: 1px solid #BEDBFB; }
<div style="border:3px solid #BEDBFB">Div</div>
This div border color is #BEDBFB.
.myOpacity80 { color: #BEDBFB; opacity: 0.8; }
<p style="color:#BEDBFB;opacity:0.8;">80%</p>
Text with #BEDBFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEDBFB;}
<p style="text-shadow: 3px 3px 1px #BEDBFB">Text here.</p>
This text has shadow with #BEDBFB color.
.textShadow {text-shadow: 3px 3px 1px #BEDBFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEDBFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEDBFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEDBFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEDBFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEDBFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEDBFB; -webkit-box-shadow: 1px 1px 3px 2px #BEDBFB; box-shadow: 1px 1px 3px 2px #BEDBFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEDBFB; -webkit-box-shadow: 1px 1px 3px 2px #BEDBFB; box-shadow:1px 1px 3px 2px #BEDBFB;">
Div content here</div>
This text has color #BEDBFB on black background.
This text has color #BEDBFB on white background.
This text has black color on #BEDBFB background.
This text has white color on #BEDBFB background.