HEX: #006461
RGB: (0,100,97)
#006461 contains only green and blue colors. Web safe color of #006461 is #006666 (or #066).
#006461 color RGB value is (0,100,97).
RGB: (0,100,97) (0%,39%,38%)
R 0 of 255 = 0%
G 100 of 255 = 39%
B 97 of 255 = 38%
R + G + B ~ 26%. #006461 is quite dark color.
R + G + B =
0 + 100 + 97 = 197 (100%)
R 0 of 197 ~ 0%
G 100 of 197 ~ 50.76%
B 97 of 197 ~ 49.24%
#006461 color CMYK value is (100,0,3,61).
CMYK: (100,0,3,61) C100M0Y3K61 (100%,0%,3%,61%) (1.00/0.00/0.03/0.61)
00 | 64 | 61 | |
---|---|---|---|
RGB | 0 | 100 | 97 |
HSL | 178° | 100.00% | 19.61% |
HSB/HSV | 178° | 100.00% | 39.22% |
CMYK | 100.00% | 0.00% | 3.00% |
60.78% |
HEX | 00 | 64 | 61 |
Decimal | 0 | 100 | 97 |
Binary | 0 | 1100100 | 1100001 |
Octal | 0 | 144 | 141 |
Examples of css and html codes for elements with #006461 color. Also use rgb(0,100,97) instead hex code.
.myTextColor { color: #006461; }
<p style="color:#006461">This sample text font color is #006461.</p>
This text font color is #006461.
.myBgColor { background-color: #006461; }
<div style="background-color:#006461">Inner text</div>
This div background color is #006461.
.myBorderColor { border: 1px solid #006461; }
<div style="border:3px solid #006461">Div</div>
This div border color is #006461.
.myOpacity80 { color: #006461; opacity: 0.8; }
<p style="color:#006461;opacity:0.8;">80%</p>
Text with #006461 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #006461;}
<p style="text-shadow: 3px 3px 1px #006461">Text here.</p>
This text has shadow with #006461 color.
.textShadow {text-shadow: 3px 3px 1px #006461, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #006461, 5px 5px 20px red">Text here.</p>
This text has shadow with #006461 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#006461, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#006461, Direction=45, Strength=4)">Text</p>
This text has shadow with #006461 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #006461; -webkit-box-shadow: 1px 1px 3px 2px #006461; box-shadow: 1px 1px 3px 2px #006461; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #006461; -webkit-box-shadow: 1px 1px 3px 2px #006461; box-shadow:1px 1px 3px 2px #006461;">
Div content here</div>
This text has color #006461 on black background.
This text has color #006461 on white background.
This text has black color on #006461 background.
This text has white color on #006461 background.