HEX: #095F4D
RGB: (9,95,77)
#095F4D contains mainly green and blue colors. Web safe color of #095F4D is #006633 (or #063).
#095F4D color RGB value is (9,95,77).
RGB: (9,95,77) (4%,37%,30%)
R 9 of 255 = 4%
G 95 of 255 = 37%
B 77 of 255 = 30%
R + G + B ~ 24%. #095F4D is dark color.
R + G + B =
9 + 95 + 77 = 181 (100%)
R 9 of 181 ~ 4.97%
G 95 of 181 ~ 52.49%
B 77 of 181 ~ 42.54%
#095F4D color CMYK value is (91,0,19,63).
CMYK: (91,0,19,63) C91M0Y19K63 (91%,0%,19%,63%) (0.91/0.00/0.19/0.63)
09 | 5F | 4D | |
---|---|---|---|
RGB | 9 | 95 | 77 |
HSL | 167° | 82.69% | 20.39% |
HSB/HSV | 167° | 90.53% | 37.25% |
CMYK | 90.53% | 0.00% | 18.95% |
62.75% |
HEX | 09 | 5F | 4D |
Decimal | 9 | 95 | 77 |
Binary | 1001 | 1011111 | 1001101 |
Octal | 11 | 137 | 115 |
Examples of css and html codes for elements with #095F4D color. Also use rgb(9,95,77) instead hex code.
.myTextColor { color: #095F4D; }
<p style="color:#095F4D">This sample text font color is #095F4D.</p>
This text font color is #095F4D.
.myBgColor { background-color: #095F4D; }
<div style="background-color:#095F4D">Inner text</div>
This div background color is #095F4D.
.myBorderColor { border: 1px solid #095F4D; }
<div style="border:3px solid #095F4D">Div</div>
This div border color is #095F4D.
.myOpacity80 { color: #095F4D; opacity: 0.8; }
<p style="color:#095F4D;opacity:0.8;">80%</p>
Text with #095F4D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #095F4D;}
<p style="text-shadow: 3px 3px 1px #095F4D">Text here.</p>
This text has shadow with #095F4D color.
.textShadow {text-shadow: 3px 3px 1px #095F4D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #095F4D, 5px 5px 20px red">Text here.</p>
This text has shadow with #095F4D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#095F4D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#095F4D, Direction=45, Strength=4)">Text</p>
This text has shadow with #095F4D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #095F4D; -webkit-box-shadow: 1px 1px 3px 2px #095F4D; box-shadow: 1px 1px 3px 2px #095F4D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #095F4D; -webkit-box-shadow: 1px 1px 3px 2px #095F4D; box-shadow:1px 1px 3px 2px #095F4D;">
Div content here</div>
This text has color #095F4D on black background.
This text has color #095F4D on white background.
This text has black color on #095F4D background.
This text has white color on #095F4D background.