HEX: #72B495
RGB: (114,180,149)
#72B495 contains mainly green and blue colors. Web safe color of #72B495 is #66CC99 (or #6C9).
#72B495 color RGB value is (114,180,149).
RGB: (114,180,149) (45%,71%,58%)
R 114 of 255 = 45%
G 180 of 255 = 71%
B 149 of 255 = 58%
R + G + B ~ 58%. #72B495 is middle color (not dark and not light).
R + G + B =
114 + 180 + 149 = 443 (100%)
R 114 of 443 ~ 25.73%
G 180 of 443 ~ 40.63%
B 149 of 443 ~ 33.63%
#72B495 color CMYK value is (37,0,17,29).
CMYK: (37,0,17,29) C37M0Y17K29 (37%,0%,17%,29%) (0.37/0.00/0.17/0.29)
72 | B4 | 95 | |
---|---|---|---|
RGB | 114 | 180 | 149 |
HSL | 152° | 30.56% | 57.65% |
HSB/HSV | 152° | 36.67% | 70.59% |
CMYK | 36.67% | 0.00% | 17.22% |
29.41% |
HEX | 72 | B4 | 95 |
Decimal | 114 | 180 | 149 |
Binary | 1110010 | 10110100 | 10010101 |
Octal | 162 | 264 | 225 |
Examples of css and html codes for elements with #72B495 color. Also use rgb(114,180,149) instead hex code.
.myTextColor { color: #72B495; }
<p style="color:#72B495">This sample text font color is #72B495.</p>
This text font color is #72B495.
.myBgColor { background-color: #72B495; }
<div style="background-color:#72B495">Inner text</div>
This div background color is #72B495.
.myBorderColor { border: 1px solid #72B495; }
<div style="border:3px solid #72B495">Div</div>
This div border color is #72B495.
.myOpacity80 { color: #72B495; opacity: 0.8; }
<p style="color:#72B495;opacity:0.8;">80%</p>
Text with #72B495 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72B495;}
<p style="text-shadow: 3px 3px 1px #72B495">Text here.</p>
This text has shadow with #72B495 color.
.textShadow {text-shadow: 3px 3px 1px #72B495, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72B495, 5px 5px 20px red">Text here.</p>
This text has shadow with #72B495 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72B495, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72B495, Direction=45, Strength=4)">Text</p>
This text has shadow with #72B495 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72B495; -webkit-box-shadow: 1px 1px 3px 2px #72B495; box-shadow: 1px 1px 3px 2px #72B495; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72B495; -webkit-box-shadow: 1px 1px 3px 2px #72B495; box-shadow:1px 1px 3px 2px #72B495;">
Div content here</div>
This text has color #72B495 on black background.
This text has color #72B495 on white background.
This text has black color on #72B495 background.
This text has white color on #72B495 background.