HEX: #3F77AB
RGB: (63,119,171)
#3F77AB contains mainly green and blue colors. Web safe color of #3F77AB is #336699 (or #369).
#3F77AB color RGB value is (63,119,171).
RGB: (63,119,171) (25%,47%,67%)
R 63 of 255 = 25%
G 119 of 255 = 47%
B 171 of 255 = 67%
R + G + B ~ 46%. #3F77AB is middle color (not dark and not light).
R + G + B =
63 + 119 + 171 = 353 (100%)
R 63 of 353 ~ 17.85%
G 119 of 353 ~ 33.71%
B 171 of 353 ~ 48.44%
#3F77AB color CMYK value is (63,30,0,33).
CMYK: (63,30,0,33) C63M30Y0K33 (63%,30%,0%,33%) (0.63/0.30/0.00/0.33)
3F | 77 | AB | |
---|---|---|---|
RGB | 63 | 119 | 171 |
HSL | 209° | 46.15% | 45.88% |
HSB/HSV | 209° | 63.16% | 67.06% |
CMYK | 63.16% | 30.41% | 0.00% |
32.94% |
HEX | 3F | 77 | AB |
Decimal | 63 | 119 | 171 |
Binary | 111111 | 1110111 | 10101011 |
Octal | 77 | 167 | 253 |
Examples of css and html codes for elements with #3F77AB color. Also use rgb(63,119,171) instead hex code.
.myTextColor { color: #3F77AB; }
<p style="color:#3F77AB">This sample text font color is #3F77AB.</p>
This text font color is #3F77AB.
.myBgColor { background-color: #3F77AB; }
<div style="background-color:#3F77AB">Inner text</div>
This div background color is #3F77AB.
.myBorderColor { border: 1px solid #3F77AB; }
<div style="border:3px solid #3F77AB">Div</div>
This div border color is #3F77AB.
.myOpacity80 { color: #3F77AB; opacity: 0.8; }
<p style="color:#3F77AB;opacity:0.8;">80%</p>
Text with #3F77AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #3F77AB;}
<p style="text-shadow: 3px 3px 1px #3F77AB">Text here.</p>
This text has shadow with #3F77AB color.
.textShadow {text-shadow: 3px 3px 1px #3F77AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #3F77AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #3F77AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#3F77AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#3F77AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #3F77AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #3F77AB; -webkit-box-shadow: 1px 1px 3px 2px #3F77AB; box-shadow: 1px 1px 3px 2px #3F77AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #3F77AB; -webkit-box-shadow: 1px 1px 3px 2px #3F77AB; box-shadow:1px 1px 3px 2px #3F77AB;">
Div content here</div>
This text has color #3F77AB on black background.
This text has color #3F77AB on white background.
This text has black color on #3F77AB background.
This text has white color on #3F77AB background.