HEX: #448BDB
RGB: (68,139,219)
#448BDB contains mainly blue color. Web safe color of #448BDB is #3399CC (or #39C).
#448BDB color RGB value is (68,139,219).
RGB: (68,139,219) (27%,55%,86%)
R 68 of 255 = 27%
G 139 of 255 = 55%
B 219 of 255 = 86%
R + G + B ~ 56%. #448BDB is middle color (not dark and not light).
R + G + B =
68 + 139 + 219 = 426 (100%)
R 68 of 426 ~ 15.96%
G 139 of 426 ~ 32.63%
B 219 of 426 ~ 51.41%
#448BDB color CMYK value is (69,37,0,14).
CMYK: (69,37,0,14) C69M37Y0K14 (69%,37%,0%,14%) (0.69/0.37/0.00/0.14)
44 | 8B | DB | |
---|---|---|---|
RGB | 68 | 139 | 219 |
HSL | 212° | 67.71% | 56.27% |
HSB/HSV | 212° | 68.95% | 85.88% |
CMYK | 68.95% | 36.53% | 0.00% |
14.12% |
HEX | 44 | 8B | DB |
Decimal | 68 | 139 | 219 |
Binary | 1000100 | 10001011 | 11011011 |
Octal | 104 | 213 | 333 |
Examples of css and html codes for elements with #448BDB color. Also use rgb(68,139,219) instead hex code.
.myTextColor { color: #448BDB; }
<p style="color:#448BDB">This sample text font color is #448BDB.</p>
This text font color is #448BDB.
.myBgColor { background-color: #448BDB; }
<div style="background-color:#448BDB">Inner text</div>
This div background color is #448BDB.
.myBorderColor { border: 1px solid #448BDB; }
<div style="border:3px solid #448BDB">Div</div>
This div border color is #448BDB.
.myOpacity80 { color: #448BDB; opacity: 0.8; }
<p style="color:#448BDB;opacity:0.8;">80%</p>
Text with #448BDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #448BDB;}
<p style="text-shadow: 3px 3px 1px #448BDB">Text here.</p>
This text has shadow with #448BDB color.
.textShadow {text-shadow: 3px 3px 1px #448BDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #448BDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #448BDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#448BDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#448BDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #448BDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #448BDB; -webkit-box-shadow: 1px 1px 3px 2px #448BDB; box-shadow: 1px 1px 3px 2px #448BDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #448BDB; -webkit-box-shadow: 1px 1px 3px 2px #448BDB; box-shadow:1px 1px 3px 2px #448BDB;">
Div content here</div>
This text has color #448BDB on black background.
This text has color #448BDB on white background.
This text has black color on #448BDB background.
This text has white color on #448BDB background.