HEX: #46376E
RGB: (70,55,110)
#46376E contains red, green and blue colors in about the same proportion. Web safe color of #46376E is #333366 (or #336).
#46376E color RGB value is (70,55,110).
RGB: (70,55,110) (27%,22%,43%)
R 70 of 255 = 27%
G 55 of 255 = 22%
B 110 of 255 = 43%
R + G + B ~ 31%. #46376E is quite dark color.
R + G + B =
70 + 55 + 110 = 235 (100%)
R 70 of 235 ~ 29.79%
G 55 of 235 ~ 23.4%
B 110 of 235 ~ 46.81%
#46376E color CMYK value is (36,50,0,57).
CMYK: (36,50,0,57) C36M50Y0K57 (36%,50%,0%,57%) (0.36/0.50/0.00/0.57)
46 | 37 | 6E | |
---|---|---|---|
RGB | 70 | 55 | 110 |
HSL | 256° | 33.33% | 32.35% |
HSB/HSV | 256° | 50.00% | 43.14% |
CMYK | 36.36% | 50.00% | 0.00% |
56.86% |
HEX | 46 | 37 | 6E |
Decimal | 70 | 55 | 110 |
Binary | 1000110 | 110111 | 1101110 |
Octal | 106 | 67 | 156 |
Examples of css and html codes for elements with #46376E color. Also use rgb(70,55,110) instead hex code.
.myTextColor { color: #46376E; }
<p style="color:#46376E">This sample text font color is #46376E.</p>
This text font color is #46376E.
.myBgColor { background-color: #46376E; }
<div style="background-color:#46376E">Inner text</div>
This div background color is #46376E.
.myBorderColor { border: 1px solid #46376E; }
<div style="border:3px solid #46376E">Div</div>
This div border color is #46376E.
.myOpacity80 { color: #46376E; opacity: 0.8; }
<p style="color:#46376E;opacity:0.8;">80%</p>
Text with #46376E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #46376E;}
<p style="text-shadow: 3px 3px 1px #46376E">Text here.</p>
This text has shadow with #46376E color.
.textShadow {text-shadow: 3px 3px 1px #46376E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #46376E, 5px 5px 20px red">Text here.</p>
This text has shadow with #46376E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#46376E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#46376E, Direction=45, Strength=4)">Text</p>
This text has shadow with #46376E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #46376E; -webkit-box-shadow: 1px 1px 3px 2px #46376E; box-shadow: 1px 1px 3px 2px #46376E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #46376E; -webkit-box-shadow: 1px 1px 3px 2px #46376E; box-shadow:1px 1px 3px 2px #46376E;">
Div content here</div>
This text has color #46376E on black background.
This text has color #46376E on white background.
This text has black color on #46376E background.
This text has white color on #46376E background.