HEX: #00BFFF
RGB: (0,191,255)
Color name is DeepSkyBlue. #00BFFF contains mainly blue color. Web safe color of #00BFFF is #00CCFF (or #0CF).
#00BFFF color RGB value is (0,191,255).
RGB: (0,191,255) (0%,75%,100%)
R 0 of 255 = 0%
G 191 of 255 = 75%
B 255 of 255 = 100%
R + G + B ~ 58%. #00BFFF is middle color (not dark and not light).
R + G + B =
0 + 191 + 255 = 446 (100%)
R 0 of 446 ~ 0%
G 191 of 446 ~ 42.83%
B 255 of 446 ~ 57.17%
#00BFFF color CMYK value is (100,25,0,0).
CMYK: (100,25,0,0) C100M25Y0K0 (100%,25%,0%,0%) (1.00/0.25/0.00/0.00)
00 | BF | FF | |
---|---|---|---|
RGB | 0 | 191 | 255 |
HSL | 195° | 100.00% | 50.00% |
HSB/HSV | 195° | 100.00% | 100.00% |
CMYK | 100.00% | 25.10% | 0.00% |
0.00% |
HEX | 00 | BF | FF |
Decimal | 0 | 191 | 255 |
Binary | 0 | 10111111 | 11111111 |
Octal | 0 | 277 | 377 |
Examples of css and html codes for elements with #00BFFF color. Also use rgb(0,191,255) instead hex code.
.myTextColor { color: #00BFFF; }
<p style="color:#00BFFF">This sample text font color is #00BFFF.</p>
This text font color is #00BFFF.
.myBgColor { background-color: #00BFFF; }
<div style="background-color:#00BFFF">Inner text</div>
This div background color is #00BFFF.
.myBorderColor { border: 1px solid #00BFFF; }
<div style="border:3px solid #00BFFF">Div</div>
This div border color is #00BFFF.
.myOpacity80 { color: #00BFFF; opacity: 0.8; }
<p style="color:#00BFFF;opacity:0.8;">80%</p>
Text with #00BFFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00BFFF;}
<p style="text-shadow: 3px 3px 1px #00BFFF">Text here.</p>
This text has shadow with #00BFFF color.
.textShadow {text-shadow: 3px 3px 1px #00BFFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00BFFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #00BFFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00BFFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00BFFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #00BFFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00BFFF; -webkit-box-shadow: 1px 1px 3px 2px #00BFFF; box-shadow: 1px 1px 3px 2px #00BFFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00BFFF; -webkit-box-shadow: 1px 1px 3px 2px #00BFFF; box-shadow:1px 1px 3px 2px #00BFFF;">
Div content here</div>
This text has color #00BFFF on black background.
This text has color #00BFFF on white background.
This text has black color on #00BFFF background.
This text has white color on #00BFFF background.