HEX: #ADBEB4
RGB: (173,190,180)
#ADBEB4 contains red, green and blue colors in about the same proportion. Web safe color of #ADBEB4 is #99CCCC (or #9CC).
#ADBEB4 color RGB value is (173,190,180).
RGB: (173,190,180) (68%,75%,71%)
R 173 of 255 = 68%
G 190 of 255 = 75%
B 180 of 255 = 71%
R + G + B ~ 71%. #ADBEB4 is quite light color.
R + G + B =
173 + 190 + 180 = 543 (100%)
R 173 of 543 ~ 31.86%
G 190 of 543 ~ 34.99%
B 180 of 543 ~ 33.15%
#ADBEB4 color CMYK value is (9,0,5,25).
CMYK: (9,0,5,25) C9M0Y5K25 (9%,0%,5%,25%) (0.09/0.00/0.05/0.25)
AD | BE | B4 | |
---|---|---|---|
RGB | 173 | 190 | 180 |
HSL | 145° | 11.56% | 71.18% |
HSB/HSV | 145° | 8.95% | 74.51% |
CMYK | 8.95% | 0.00% | 5.26% |
25.49% |
HEX | AD | BE | B4 |
Decimal | 173 | 190 | 180 |
Binary | 10101101 | 10111110 | 10110100 |
Octal | 255 | 276 | 264 |
Examples of css and html codes for elements with #ADBEB4 color. Also use rgb(173,190,180) instead hex code.
.myTextColor { color: #ADBEB4; }
<p style="color:#ADBEB4">This sample text font color is #ADBEB4.</p>
This text font color is #ADBEB4.
.myBgColor { background-color: #ADBEB4; }
<div style="background-color:#ADBEB4">Inner text</div>
This div background color is #ADBEB4.
.myBorderColor { border: 1px solid #ADBEB4; }
<div style="border:3px solid #ADBEB4">Div</div>
This div border color is #ADBEB4.
.myOpacity80 { color: #ADBEB4; opacity: 0.8; }
<p style="color:#ADBEB4;opacity:0.8;">80%</p>
Text with #ADBEB4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADBEB4;}
<p style="text-shadow: 3px 3px 1px #ADBEB4">Text here.</p>
This text has shadow with #ADBEB4 color.
.textShadow {text-shadow: 3px 3px 1px #ADBEB4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADBEB4, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADBEB4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADBEB4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADBEB4, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADBEB4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADBEB4; -webkit-box-shadow: 1px 1px 3px 2px #ADBEB4; box-shadow: 1px 1px 3px 2px #ADBEB4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADBEB4; -webkit-box-shadow: 1px 1px 3px 2px #ADBEB4; box-shadow:1px 1px 3px 2px #ADBEB4;">
Div content here</div>
This text has color #ADBEB4 on black background.
This text has color #ADBEB4 on white background.
This text has black color on #ADBEB4 background.
This text has white color on #ADBEB4 background.