HEX: #007DF2
RGB: (0,125,242)
#007DF2 contains mainly blue color. Web safe color of #007DF2 is #0066FF (or #06F).
#007DF2 color RGB value is (0,125,242).
RGB: (0,125,242) (0%,49%,95%)
R 0 of 255 = 0%
G 125 of 255 = 49%
B 242 of 255 = 95%
R + G + B ~ 48%. #007DF2 is middle color (not dark and not light).
R + G + B =
0 + 125 + 242 = 367 (100%)
R 0 of 367 ~ 0%
G 125 of 367 ~ 34.06%
B 242 of 367 ~ 65.94%
#007DF2 color CMYK value is (100,48,0,5).
CMYK: (100,48,0,5) C100M48Y0K5 (100%,48%,0%,5%) (1.00/0.48/0.00/0.05)
00 | 7D | F2 | |
---|---|---|---|
RGB | 0 | 125 | 242 |
HSL | 209° | 100.00% | 47.45% |
HSB/HSV | 209° | 100.00% | 94.90% |
CMYK | 100.00% | 48.35% | 0.00% |
5.10% |
HEX | 00 | 7D | F2 |
Decimal | 0 | 125 | 242 |
Binary | 0 | 1111101 | 11110010 |
Octal | 0 | 175 | 362 |
Examples of css and html codes for elements with #007DF2 color. Also use rgb(0,125,242) instead hex code.
.myTextColor { color: #007DF2; }
<p style="color:#007DF2">This sample text font color is #007DF2.</p>
This text font color is #007DF2.
.myBgColor { background-color: #007DF2; }
<div style="background-color:#007DF2">Inner text</div>
This div background color is #007DF2.
.myBorderColor { border: 1px solid #007DF2; }
<div style="border:3px solid #007DF2">Div</div>
This div border color is #007DF2.
.myOpacity80 { color: #007DF2; opacity: 0.8; }
<p style="color:#007DF2;opacity:0.8;">80%</p>
Text with #007DF2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #007DF2;}
<p style="text-shadow: 3px 3px 1px #007DF2">Text here.</p>
This text has shadow with #007DF2 color.
.textShadow {text-shadow: 3px 3px 1px #007DF2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #007DF2, 5px 5px 20px red">Text here.</p>
This text has shadow with #007DF2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#007DF2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#007DF2, Direction=45, Strength=4)">Text</p>
This text has shadow with #007DF2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #007DF2; -webkit-box-shadow: 1px 1px 3px 2px #007DF2; box-shadow: 1px 1px 3px 2px #007DF2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #007DF2; -webkit-box-shadow: 1px 1px 3px 2px #007DF2; box-shadow:1px 1px 3px 2px #007DF2;">
Div content here</div>
This text has color #007DF2 on black background.
This text has color #007DF2 on white background.
This text has black color on #007DF2 background.
This text has white color on #007DF2 background.