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