HEX: #AD988C
RGB: (173,152,140)
#AD988C contains red, green and blue colors in about the same proportion. #AD988C ‘ nin web güvenlik rengi #999999 (ya da #999) dir.
#AD988C color RGB value is (173,152,140).
RGB: (173,152,140) (68%,60%,55%)
R 173 of 255 = 68%
G 152 of 255 = 60%
B 140 of 255 = 55%
R + G + B ~ 61%. #AD988C is quite light color.
R + G + B =
173 + 152 + 140 = 465 (100%)
R 173 of 465 ~ 37.2%
G 152 of 465 ~ 32.69%
B 140 of 465 ~ 30.11%
#AD988C rengi CMYK tonu (0,12,19,32).
CMYK: (0,12,19,32) C0M12Y19K32 (0%,12%,19%,32%) (0.00/0.12/0.19/0.32)
AD | 98 | 8C | |
---|---|---|---|
RGB | 173 | 152 | 140 |
HSL | 22° | 16.75% | 61.37% |
HSB/HSV | 22° | 19.08% | 67.84% |
CMYK | 0.00% | 12.14% | 19.08% |
32.16% |
HEX | AD | 98 | 8C |
Decimal | 173 | 152 | 140 |
Binary | 10101101 | 10011000 | 10001100 |
Octal | 255 | 230 | 214 |
Examples of css and html codes for elements with #AD988C color. Also use rgb(173,152,140) instead hex code.
.myTextColor { color: #AD988C; }
<p style="color:#AD988C">This sample text font color is #AD988C.</p>
This text font color is #AD988C.
.myBgColor { background-color: #AD988C; }
<div style="background-color:#AD988C">Inner text</div>
This div background color is #AD988C.
.myBorderColor { border: 1px solid #AD988C; }
<div style="border:3px solid #AD988C">Div</div>
This div border color is #AD988C.
.myOpacity80 { color: #AD988C; opacity: 0.8; }
<p style="color:#AD988C;opacity:0.8;">80%</p>
Text with #AD988C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD988C;}
<p style="text-shadow: 3px 3px 1px #AD988C">Text here.</p>
This text has shadow with #AD988C color.
.textShadow {text-shadow: 3px 3px 1px #AD988C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD988C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD988C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD988C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD988C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD988C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD988C; -webkit-box-shadow: 1px 1px 3px 2px #AD988C; box-shadow: 1px 1px 3px 2px #AD988C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD988C; -webkit-box-shadow: 1px 1px 3px 2px #AD988C; box-shadow:1px 1px 3px 2px #AD988C;">
Div content here</div>
This text has color #AD988C on black background.
This text has color #AD988C on white background.
This text has black color on #AD988C background.
This text has white color on #AD988C background.