HEX: #50BCFB
RGB: (80,188,251)
#50BCFB contains mainly blue color. Web safe color of #50BCFB is #66CCFF (or #6CF).
#50BCFB color RGB value is (80,188,251).
RGB: (80,188,251) (31%,74%,98%)
R 80 of 255 = 31%
G 188 of 255 = 74%
B 251 of 255 = 98%
R + G + B ~ 68%. #50BCFB is quite light color.
R + G + B =
80 + 188 + 251 = 519 (100%)
R 80 of 519 ~ 15.41%
G 188 of 519 ~ 36.22%
B 251 of 519 ~ 48.36%
#50BCFB color CMYK value is (68,25,0,2).
CMYK: (68,25,0,2) C68M25Y0K2 (68%,25%,0%,2%) (0.68/0.25/0.00/0.02)
50 | BC | FB | |
---|---|---|---|
RGB | 80 | 188 | 251 |
HSL | 202° | 95.53% | 64.90% |
HSB/HSV | 202° | 68.13% | 98.43% |
CMYK | 68.13% | 25.10% | 0.00% |
1.57% |
HEX | 50 | BC | FB |
Decimal | 80 | 188 | 251 |
Binary | 1010000 | 10111100 | 11111011 |
Octal | 120 | 274 | 373 |
Examples of css and html codes for elements with #50BCFB color. Also use rgb(80,188,251) instead hex code.
.myTextColor { color: #50BCFB; }
<p style="color:#50BCFB">This sample text font color is #50BCFB.</p>
This text font color is #50BCFB.
.myBgColor { background-color: #50BCFB; }
<div style="background-color:#50BCFB">Inner text</div>
This div background color is #50BCFB.
.myBorderColor { border: 1px solid #50BCFB; }
<div style="border:3px solid #50BCFB">Div</div>
This div border color is #50BCFB.
.myOpacity80 { color: #50BCFB; opacity: 0.8; }
<p style="color:#50BCFB;opacity:0.8;">80%</p>
Text with #50BCFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50BCFB;}
<p style="text-shadow: 3px 3px 1px #50BCFB">Text here.</p>
This text has shadow with #50BCFB color.
.textShadow {text-shadow: 3px 3px 1px #50BCFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50BCFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #50BCFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50BCFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50BCFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #50BCFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50BCFB; -webkit-box-shadow: 1px 1px 3px 2px #50BCFB; box-shadow: 1px 1px 3px 2px #50BCFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50BCFB; -webkit-box-shadow: 1px 1px 3px 2px #50BCFB; box-shadow:1px 1px 3px 2px #50BCFB;">
Div content here</div>
This text has color #50BCFB on black background.
This text has color #50BCFB on white background.
This text has black color on #50BCFB background.
This text has white color on #50BCFB background.