HEX: #356E7B
RGB: (53,110,123)
#356E7B contains mainly green and blue colors. Web safe color of #356E7B is #336666 (or #366).
#356E7B color RGB value is (53,110,123).
RGB: (53,110,123) (21%,43%,48%)
R 53 of 255 = 21%
G 110 of 255 = 43%
B 123 of 255 = 48%
R + G + B ~ 37%. #356E7B is quite dark color.
R + G + B =
53 + 110 + 123 = 286 (100%)
R 53 of 286 ~ 18.53%
G 110 of 286 ~ 38.46%
B 123 of 286 ~ 43.01%
#356E7B color CMYK value is (57,11,0,52).
CMYK: (57,11,0,52) C57M11Y0K52 (57%,11%,0%,52%) (0.57/0.11/0.00/0.52)
35 | 6E | 7B | |
---|---|---|---|
RGB | 53 | 110 | 123 |
HSL | 191° | 39.77% | 34.51% |
HSB/HSV | 191° | 56.91% | 48.24% |
CMYK | 56.91% | 10.57% | 0.00% |
51.76% |
HEX | 35 | 6E | 7B |
Decimal | 53 | 110 | 123 |
Binary | 110101 | 1101110 | 1111011 |
Octal | 65 | 156 | 173 |
Examples of css and html codes for elements with #356E7B color. Also use rgb(53,110,123) instead hex code.
.myTextColor { color: #356E7B; }
<p style="color:#356E7B">This sample text font color is #356E7B.</p>
This text font color is #356E7B.
.myBgColor { background-color: #356E7B; }
<div style="background-color:#356E7B">Inner text</div>
This div background color is #356E7B.
.myBorderColor { border: 1px solid #356E7B; }
<div style="border:3px solid #356E7B">Div</div>
This div border color is #356E7B.
.myOpacity80 { color: #356E7B; opacity: 0.8; }
<p style="color:#356E7B;opacity:0.8;">80%</p>
Text with #356E7B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #356E7B;}
<p style="text-shadow: 3px 3px 1px #356E7B">Text here.</p>
This text has shadow with #356E7B color.
.textShadow {text-shadow: 3px 3px 1px #356E7B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #356E7B, 5px 5px 20px red">Text here.</p>
This text has shadow with #356E7B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#356E7B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#356E7B, Direction=45, Strength=4)">Text</p>
This text has shadow with #356E7B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #356E7B; -webkit-box-shadow: 1px 1px 3px 2px #356E7B; box-shadow: 1px 1px 3px 2px #356E7B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #356E7B; -webkit-box-shadow: 1px 1px 3px 2px #356E7B; box-shadow:1px 1px 3px 2px #356E7B;">
Div content here</div>
This text has color #356E7B on black background.
This text has color #356E7B on white background.
This text has black color on #356E7B background.
This text has white color on #356E7B background.