HEX: #1E90FF
RGB: (30,144,255)
Color name is DodgerBlue. #1E90FF contains mainly blue color. Web safe color of #1E90FF is #3399FF (or #39F).
#1E90FF color RGB value is (30,144,255).
RGB: (30,144,255) (12%,56%,100%)
R 30 of 255 = 12%
G 144 of 255 = 56%
B 255 of 255 = 100%
R + G + B ~ 56%. #1E90FF is middle color (not dark and not light).
R + G + B =
30 + 144 + 255 = 429 (100%)
R 30 of 429 ~ 6.99%
G 144 of 429 ~ 33.57%
B 255 of 429 ~ 59.44%
#1E90FF color CMYK value is (88,44,0,0).
CMYK: (88,44,0,0) C88M44Y0K0 (88%,44%,0%,0%) (0.88/0.44/0.00/0.00)
1E | 90 | FF | |
---|---|---|---|
RGB | 30 | 144 | 255 |
HSL | 210° | 100.00% | 55.88% |
HSB/HSV | 210° | 88.24% | 100.00% |
CMYK | 88.24% | 43.53% | 0.00% |
0.00% |
HEX | 1E | 90 | FF |
Decimal | 30 | 144 | 255 |
Binary | 11110 | 10010000 | 11111111 |
Octal | 36 | 220 | 377 |
Examples of css and html codes for elements with #1E90FF color. Also use rgb(30,144,255) instead hex code.
.myTextColor { color: #1E90FF; }
<p style="color:#1E90FF">This sample text font color is #1E90FF.</p>
This text font color is #1E90FF.
.myBgColor { background-color: #1E90FF; }
<div style="background-color:#1E90FF">Inner text</div>
This div background color is #1E90FF.
.myBorderColor { border: 1px solid #1E90FF; }
<div style="border:3px solid #1E90FF">Div</div>
This div border color is #1E90FF.
.myOpacity80 { color: #1E90FF; opacity: 0.8; }
<p style="color:#1E90FF;opacity:0.8;">80%</p>
Text with #1E90FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #1E90FF;}
<p style="text-shadow: 3px 3px 1px #1E90FF">Text here.</p>
This text has shadow with #1E90FF color.
.textShadow {text-shadow: 3px 3px 1px #1E90FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #1E90FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #1E90FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#1E90FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#1E90FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #1E90FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #1E90FF; -webkit-box-shadow: 1px 1px 3px 2px #1E90FF; box-shadow: 1px 1px 3px 2px #1E90FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #1E90FF; -webkit-box-shadow: 1px 1px 3px 2px #1E90FF; box-shadow:1px 1px 3px 2px #1E90FF;">
Div content here</div>
This text has color #1E90FF on black background.
This text has color #1E90FF on white background.
This text has black color on #1E90FF background.
This text has white color on #1E90FF background.