HEX: #489883
RGB: (72,152,131)
#489883 contains mainly green and blue colors. Web safe color of #489883 is #339999 (or #399).
#489883 color RGB value is (72,152,131).
RGB: (72,152,131) (28%,60%,51%)
R 72 of 255 = 28%
G 152 of 255 = 60%
B 131 of 255 = 51%
R + G + B ~ 46%. #489883 is middle color (not dark and not light).
R + G + B =
72 + 152 + 131 = 355 (100%)
R 72 of 355 ~ 20.28%
G 152 of 355 ~ 42.82%
B 131 of 355 ~ 36.9%
#489883 color CMYK value is (53,0,14,40).
CMYK: (53,0,14,40) C53M0Y14K40 (53%,0%,14%,40%) (0.53/0.00/0.14/0.40)
48 | 98 | 83 | |
---|---|---|---|
RGB | 72 | 152 | 131 |
HSL | 164° | 35.71% | 43.92% |
HSB/HSV | 164° | 52.63% | 59.61% |
CMYK | 52.63% | 0.00% | 13.82% |
40.39% |
HEX | 48 | 98 | 83 |
Decimal | 72 | 152 | 131 |
Binary | 1001000 | 10011000 | 10000011 |
Octal | 110 | 230 | 203 |
Examples of css and html codes for elements with #489883 color. Also use rgb(72,152,131) instead hex code.
.myTextColor { color: #489883; }
<p style="color:#489883">This sample text font color is #489883.</p>
This text font color is #489883.
.myBgColor { background-color: #489883; }
<div style="background-color:#489883">Inner text</div>
This div background color is #489883.
.myBorderColor { border: 1px solid #489883; }
<div style="border:3px solid #489883">Div</div>
This div border color is #489883.
.myOpacity80 { color: #489883; opacity: 0.8; }
<p style="color:#489883;opacity:0.8;">80%</p>
Text with #489883 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #489883;}
<p style="text-shadow: 3px 3px 1px #489883">Text here.</p>
This text has shadow with #489883 color.
.textShadow {text-shadow: 3px 3px 1px #489883, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #489883, 5px 5px 20px red">Text here.</p>
This text has shadow with #489883 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#489883, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#489883, Direction=45, Strength=4)">Text</p>
This text has shadow with #489883 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #489883; -webkit-box-shadow: 1px 1px 3px 2px #489883; box-shadow: 1px 1px 3px 2px #489883; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #489883; -webkit-box-shadow: 1px 1px 3px 2px #489883; box-shadow:1px 1px 3px 2px #489883;">
Div content here</div>
This text has color #489883 on black background.
This text has color #489883 on white background.
This text has black color on #489883 background.
This text has white color on #489883 background.