HEX: #00B1ED
RGB: (0,177,237)
#00B1ED contains mainly blue color. Web safe color of #00B1ED is #0099FF (or #09F).
#00B1ED color RGB value is (0,177,237).
RGB: (0,177,237) (0%,69%,93%)
R 0 of 255 = 0%
G 177 of 255 = 69%
B 237 of 255 = 93%
R + G + B ~ 54%. #00B1ED is middle color (not dark and not light).
R + G + B =
0 + 177 + 237 = 414 (100%)
R 0 of 414 ~ 0%
G 177 of 414 ~ 42.75%
B 237 of 414 ~ 57.25%
#00B1ED color CMYK value is (100,25,0,7).
CMYK: (100,25,0,7) C100M25Y0K7 (100%,25%,0%,7%) (1.00/0.25/0.00/0.07)
00 | B1 | ED | |
---|---|---|---|
RGB | 0 | 177 | 237 |
HSL | 195° | 100.00% | 46.47% |
HSB/HSV | 195° | 100.00% | 92.94% |
CMYK | 100.00% | 25.32% | 0.00% |
7.06% |
HEX | 00 | B1 | ED |
Decimal | 0 | 177 | 237 |
Binary | 0 | 10110001 | 11101101 |
Octal | 0 | 261 | 355 |
Examples of css and html codes for elements with #00B1ED color. Also use rgb(0,177,237) instead hex code.
.myTextColor { color: #00B1ED; }
<p style="color:#00B1ED">This sample text font color is #00B1ED.</p>
This text font color is #00B1ED.
.myBgColor { background-color: #00B1ED; }
<div style="background-color:#00B1ED">Inner text</div>
This div background color is #00B1ED.
.myBorderColor { border: 1px solid #00B1ED; }
<div style="border:3px solid #00B1ED">Div</div>
This div border color is #00B1ED.
.myOpacity80 { color: #00B1ED; opacity: 0.8; }
<p style="color:#00B1ED;opacity:0.8;">80%</p>
Text with #00B1ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00B1ED;}
<p style="text-shadow: 3px 3px 1px #00B1ED">Text here.</p>
This text has shadow with #00B1ED color.
.textShadow {text-shadow: 3px 3px 1px #00B1ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00B1ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #00B1ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00B1ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00B1ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #00B1ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00B1ED; -webkit-box-shadow: 1px 1px 3px 2px #00B1ED; box-shadow: 1px 1px 3px 2px #00B1ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00B1ED; -webkit-box-shadow: 1px 1px 3px 2px #00B1ED; box-shadow:1px 1px 3px 2px #00B1ED;">
Div content here</div>
This text has color #00B1ED on black background.
This text has color #00B1ED on white background.
This text has black color on #00B1ED background.
This text has white color on #00B1ED background.