HEX: #A68550
RGB: (166,133,80)
#A68550 contains mainly red and green colors. Web safe color of #A68550 is #999966 (or #996).
#A68550 color RGB value is (166,133,80).
RGB: (166,133,80) (65%,52%,31%)
R 166 of 255 = 65%
G 133 of 255 = 52%
B 80 of 255 = 31%
R + G + B ~ 49%. #A68550 is middle color (not dark and not light).
R + G + B =
166 + 133 + 80 = 379 (100%)
R 166 of 379 ~ 43.8%
G 133 of 379 ~ 35.09%
B 80 of 379 ~ 21.11%
#A68550 color CMYK value is (0,20,52,35).
CMYK: (0,20,52,35) C0M20Y52K35 (0%,20%,52%,35%) (0.00/0.20/0.52/0.35)
A6 | 85 | 50 | |
---|---|---|---|
RGB | 166 | 133 | 80 |
HSL | 37° | 34.96% | 48.24% |
HSB/HSV | 37° | 51.81% | 65.10% |
CMYK | 0.00% | 19.88% | 51.81% |
34.90% |
HEX | A6 | 85 | 50 |
Decimal | 166 | 133 | 80 |
Binary | 10100110 | 10000101 | 1010000 |
Octal | 246 | 205 | 120 |
Examples of css and html codes for elements with #A68550 color. Also use rgb(166,133,80) instead hex code.
.myTextColor { color: #A68550; }
<p style="color:#A68550">This sample text font color is #A68550.</p>
This text font color is #A68550.
.myBgColor { background-color: #A68550; }
<div style="background-color:#A68550">Inner text</div>
This div background color is #A68550.
.myBorderColor { border: 1px solid #A68550; }
<div style="border:3px solid #A68550">Div</div>
This div border color is #A68550.
.myOpacity80 { color: #A68550; opacity: 0.8; }
<p style="color:#A68550;opacity:0.8;">80%</p>
Text with #A68550 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A68550;}
<p style="text-shadow: 3px 3px 1px #A68550">Text here.</p>
This text has shadow with #A68550 color.
.textShadow {text-shadow: 3px 3px 1px #A68550, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A68550, 5px 5px 20px red">Text here.</p>
This text has shadow with #A68550 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A68550, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A68550, Direction=45, Strength=4)">Text</p>
This text has shadow with #A68550 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A68550; -webkit-box-shadow: 1px 1px 3px 2px #A68550; box-shadow: 1px 1px 3px 2px #A68550; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A68550; -webkit-box-shadow: 1px 1px 3px 2px #A68550; box-shadow:1px 1px 3px 2px #A68550;">
Div content here</div>
This text has color #A68550 on black background.
This text has color #A68550 on white background.
This text has black color on #A68550 background.
This text has white color on #A68550 background.