HEX: #06D7FB
RGB: (6,215,251)
#06D7FB contains mainly green and blue colors. Web safe color of #06D7FB is #00CCFF (or #0CF).
#06D7FB color RGB value is (6,215,251).
RGB: (6,215,251) (2%,84%,98%)
R 6 of 255 = 2%
G 215 of 255 = 84%
B 251 of 255 = 98%
R + G + B ~ 61%. #06D7FB is quite light color.
R + G + B =
6 + 215 + 251 = 472 (100%)
R 6 of 472 ~ 1.27%
G 215 of 472 ~ 45.55%
B 251 of 472 ~ 53.18%
#06D7FB color CMYK value is (98,14,0,2).
CMYK: (98,14,0,2) C98M14Y0K2 (98%,14%,0%,2%) (0.98/0.14/0.00/0.02)
06 | D7 | FB | |
---|---|---|---|
RGB | 6 | 215 | 251 |
HSL | 189° | 96.84% | 50.39% |
HSB/HSV | 189° | 97.61% | 98.43% |
CMYK | 97.61% | 14.34% | 0.00% |
1.57% |
HEX | 06 | D7 | FB |
Decimal | 6 | 215 | 251 |
Binary | 110 | 11010111 | 11111011 |
Octal | 6 | 327 | 373 |
Examples of css and html codes for elements with #06D7FB color. Also use rgb(6,215,251) instead hex code.
.myTextColor { color: #06D7FB; }
<p style="color:#06D7FB">This sample text font color is #06D7FB.</p>
This text font color is #06D7FB.
.myBgColor { background-color: #06D7FB; }
<div style="background-color:#06D7FB">Inner text</div>
This div background color is #06D7FB.
.myBorderColor { border: 1px solid #06D7FB; }
<div style="border:3px solid #06D7FB">Div</div>
This div border color is #06D7FB.
.myOpacity80 { color: #06D7FB; opacity: 0.8; }
<p style="color:#06D7FB;opacity:0.8;">80%</p>
Text with #06D7FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #06D7FB;}
<p style="text-shadow: 3px 3px 1px #06D7FB">Text here.</p>
This text has shadow with #06D7FB color.
.textShadow {text-shadow: 3px 3px 1px #06D7FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #06D7FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #06D7FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#06D7FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#06D7FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #06D7FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #06D7FB; -webkit-box-shadow: 1px 1px 3px 2px #06D7FB; box-shadow: 1px 1px 3px 2px #06D7FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #06D7FB; -webkit-box-shadow: 1px 1px 3px 2px #06D7FB; box-shadow:1px 1px 3px 2px #06D7FB;">
Div content here</div>
This text has color #06D7FB on black background.
This text has color #06D7FB on white background.
This text has black color on #06D7FB background.
This text has white color on #06D7FB background.