HEX: #3F748B
RGB: (63,116,139)
#3F748B contains mainly green and blue colors. Web safe color of #3F748B is #336699 (or #369).
#3F748B color RGB value is (63,116,139).
RGB: (63,116,139) (25%,45%,55%)
R 63 of 255 = 25%
G 116 of 255 = 45%
B 139 of 255 = 55%
R + G + B ~ 42%. #3F748B is middle color (not dark and not light).
R + G + B =
63 + 116 + 139 = 318 (100%)
R 63 of 318 ~ 19.81%
G 116 of 318 ~ 36.48%
B 139 of 318 ~ 43.71%
#3F748B color CMYK value is (55,17,0,45).
CMYK: (55,17,0,45) C55M17Y0K45 (55%,17%,0%,45%) (0.55/0.17/0.00/0.45)
3F | 74 | 8B | |
---|---|---|---|
RGB | 63 | 116 | 139 |
HSL | 198° | 37.62% | 39.61% |
HSB/HSV | 198° | 54.68% | 54.51% |
CMYK | 54.68% | 16.55% | 0.00% |
45.49% |
HEX | 3F | 74 | 8B |
Decimal | 63 | 116 | 139 |
Binary | 111111 | 1110100 | 10001011 |
Octal | 77 | 164 | 213 |
Examples of css and html codes for elements with #3F748B color. Also use rgb(63,116,139) instead hex code.
.myTextColor { color: #3F748B; }
<p style="color:#3F748B">This sample text font color is #3F748B.</p>
This text font color is #3F748B.
.myBgColor { background-color: #3F748B; }
<div style="background-color:#3F748B">Inner text</div>
This div background color is #3F748B.
.myBorderColor { border: 1px solid #3F748B; }
<div style="border:3px solid #3F748B">Div</div>
This div border color is #3F748B.
.myOpacity80 { color: #3F748B; opacity: 0.8; }
<p style="color:#3F748B;opacity:0.8;">80%</p>
Text with #3F748B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #3F748B;}
<p style="text-shadow: 3px 3px 1px #3F748B">Text here.</p>
This text has shadow with #3F748B color.
.textShadow {text-shadow: 3px 3px 1px #3F748B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #3F748B, 5px 5px 20px red">Text here.</p>
This text has shadow with #3F748B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#3F748B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#3F748B, Direction=45, Strength=4)">Text</p>
This text has shadow with #3F748B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #3F748B; -webkit-box-shadow: 1px 1px 3px 2px #3F748B; box-shadow: 1px 1px 3px 2px #3F748B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #3F748B; -webkit-box-shadow: 1px 1px 3px 2px #3F748B; box-shadow:1px 1px 3px 2px #3F748B;">
Div content here</div>
This text has color #3F748B on black background.
This text has color #3F748B on white background.
This text has black color on #3F748B background.
This text has white color on #3F748B background.