HEX: #1977DB
RGB: (25,119,219)
#1977DB contains mainly blue color. Web safe color of #1977DB is #0066CC (or #06C).
#1977DB color RGB value is (25,119,219).
RGB: (25,119,219) (10%,47%,86%)
R 25 of 255 = 10%
G 119 of 255 = 47%
B 219 of 255 = 86%
R + G + B ~ 48%. #1977DB is middle color (not dark and not light).
R + G + B =
25 + 119 + 219 = 363 (100%)
R 25 of 363 ~ 6.89%
G 119 of 363 ~ 32.78%
B 219 of 363 ~ 60.33%
#1977DB color CMYK value is (89,46,0,14).
CMYK: (89,46,0,14) C89M46Y0K14 (89%,46%,0%,14%) (0.89/0.46/0.00/0.14)
19 | 77 | DB | |
---|---|---|---|
RGB | 25 | 119 | 219 |
HSL | 211° | 79.51% | 47.84% |
HSB/HSV | 211° | 88.58% | 85.88% |
CMYK | 88.58% | 45.66% | 0.00% |
14.12% |
HEX | 19 | 77 | DB |
Decimal | 25 | 119 | 219 |
Binary | 11001 | 1110111 | 11011011 |
Octal | 31 | 167 | 333 |
Examples of css and html codes for elements with #1977DB color. Also use rgb(25,119,219) instead hex code.
.myTextColor { color: #1977DB; }
<p style="color:#1977DB">This sample text font color is #1977DB.</p>
This text font color is #1977DB.
.myBgColor { background-color: #1977DB; }
<div style="background-color:#1977DB">Inner text</div>
This div background color is #1977DB.
.myBorderColor { border: 1px solid #1977DB; }
<div style="border:3px solid #1977DB">Div</div>
This div border color is #1977DB.
.myOpacity80 { color: #1977DB; opacity: 0.8; }
<p style="color:#1977DB;opacity:0.8;">80%</p>
Text with #1977DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #1977DB;}
<p style="text-shadow: 3px 3px 1px #1977DB">Text here.</p>
This text has shadow with #1977DB color.
.textShadow {text-shadow: 3px 3px 1px #1977DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #1977DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #1977DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#1977DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#1977DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #1977DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #1977DB; -webkit-box-shadow: 1px 1px 3px 2px #1977DB; box-shadow: 1px 1px 3px 2px #1977DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #1977DB; -webkit-box-shadow: 1px 1px 3px 2px #1977DB; box-shadow:1px 1px 3px 2px #1977DB;">
Div content here</div>
This text has color #1977DB on black background.
This text has color #1977DB on white background.
This text has black color on #1977DB background.
This text has white color on #1977DB background.