HEX: #466D63
RGB: (70,109,99)
#466D63 contains red, green and blue colors in about the same proportion. Web safe color of #466D63 is #336666 (or #366).
#466D63 color RGB value is (70,109,99).
RGB: (70,109,99) (27%,43%,39%)
R 70 of 255 = 27%
G 109 of 255 = 43%
B 99 of 255 = 39%
R + G + B ~ 36%. #466D63 is quite dark color.
R + G + B =
70 + 109 + 99 = 278 (100%)
R 70 of 278 ~ 25.18%
G 109 of 278 ~ 39.21%
B 99 of 278 ~ 35.61%
#466D63 color CMYK value is (36,0,9,57).
CMYK: (36,0,9,57) C36M0Y9K57 (36%,0%,9%,57%) (0.36/0.00/0.09/0.57)
46 | 6D | 63 | |
---|---|---|---|
RGB | 70 | 109 | 99 |
HSL | 165° | 21.79% | 35.10% |
HSB/HSV | 165° | 35.78% | 42.75% |
CMYK | 35.78% | 0.00% | 9.17% |
57.25% |
HEX | 46 | 6D | 63 |
Decimal | 70 | 109 | 99 |
Binary | 1000110 | 1101101 | 1100011 |
Octal | 106 | 155 | 143 |
Examples of css and html codes for elements with #466D63 color. Also use rgb(70,109,99) instead hex code.
.myTextColor { color: #466D63; }
<p style="color:#466D63">This sample text font color is #466D63.</p>
This text font color is #466D63.
.myBgColor { background-color: #466D63; }
<div style="background-color:#466D63">Inner text</div>
This div background color is #466D63.
.myBorderColor { border: 1px solid #466D63; }
<div style="border:3px solid #466D63">Div</div>
This div border color is #466D63.
.myOpacity80 { color: #466D63; opacity: 0.8; }
<p style="color:#466D63;opacity:0.8;">80%</p>
Text with #466D63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #466D63;}
<p style="text-shadow: 3px 3px 1px #466D63">Text here.</p>
This text has shadow with #466D63 color.
.textShadow {text-shadow: 3px 3px 1px #466D63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #466D63, 5px 5px 20px red">Text here.</p>
This text has shadow with #466D63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#466D63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#466D63, Direction=45, Strength=4)">Text</p>
This text has shadow with #466D63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #466D63; -webkit-box-shadow: 1px 1px 3px 2px #466D63; box-shadow: 1px 1px 3px 2px #466D63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #466D63; -webkit-box-shadow: 1px 1px 3px 2px #466D63; box-shadow:1px 1px 3px 2px #466D63;">
Div content here</div>
This text has color #466D63 on black background.
This text has color #466D63 on white background.
This text has black color on #466D63 background.
This text has white color on #466D63 background.