HEX: #363F59
RGB: (54,63,89)
#363F59 contains red, green and blue colors in about the same proportion. Web safe color of #363F59 is #333366 (or #336).
#363F59 color RGB value is (54,63,89).
RGB: (54,63,89) (21%,25%,35%)
R 54 of 255 = 21%
G 63 of 255 = 25%
B 89 of 255 = 35%
R + G + B ~ 27%. #363F59 is quite dark color.
R + G + B =
54 + 63 + 89 = 206 (100%)
R 54 of 206 ~ 26.21%
G 63 of 206 ~ 30.58%
B 89 of 206 ~ 43.2%
#363F59 color CMYK value is (39,29,0,65).
CMYK: (39,29,0,65) C39M29Y0K65 (39%,29%,0%,65%) (0.39/0.29/0.00/0.65)
36 | 3F | 59 | |
---|---|---|---|
RGB | 54 | 63 | 89 |
HSL | 225° | 24.48% | 28.04% |
HSB/HSV | 225° | 39.33% | 34.90% |
CMYK | 39.33% | 29.21% | 0.00% |
65.10% |
HEX | 36 | 3F | 59 |
Decimal | 54 | 63 | 89 |
Binary | 110110 | 111111 | 1011001 |
Octal | 66 | 77 | 131 |
Examples of css and html codes for elements with #363F59 color. Also use rgb(54,63,89) instead hex code.
.myTextColor { color: #363F59; }
<p style="color:#363F59">This sample text font color is #363F59.</p>
This text font color is #363F59.
.myBgColor { background-color: #363F59; }
<div style="background-color:#363F59">Inner text</div>
This div background color is #363F59.
.myBorderColor { border: 1px solid #363F59; }
<div style="border:3px solid #363F59">Div</div>
This div border color is #363F59.
.myOpacity80 { color: #363F59; opacity: 0.8; }
<p style="color:#363F59;opacity:0.8;">80%</p>
Text with #363F59 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #363F59;}
<p style="text-shadow: 3px 3px 1px #363F59">Text here.</p>
This text has shadow with #363F59 color.
.textShadow {text-shadow: 3px 3px 1px #363F59, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #363F59, 5px 5px 20px red">Text here.</p>
This text has shadow with #363F59 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#363F59, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#363F59, Direction=45, Strength=4)">Text</p>
This text has shadow with #363F59 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #363F59; -webkit-box-shadow: 1px 1px 3px 2px #363F59; box-shadow: 1px 1px 3px 2px #363F59; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #363F59; -webkit-box-shadow: 1px 1px 3px 2px #363F59; box-shadow:1px 1px 3px 2px #363F59;">
Div content here</div>
This text has color #363F59 on black background.
This text has color #363F59 on white background.
This text has black color on #363F59 background.
This text has white color on #363F59 background.