HEX: #66825D
RGB: (102,130,93)
#66825D contains red, green and blue colors in about the same proportion. Web safe color of #66825D is #669966 (or #696).
#66825D color RGB value is (102,130,93).
RGB: (102,130,93) (40%,51%,36%)
R 102 of 255 = 40%
G 130 of 255 = 51%
B 93 of 255 = 36%
R + G + B ~ 42%. #66825D is middle color (not dark and not light).
R + G + B =
102 + 130 + 93 = 325 (100%)
R 102 of 325 ~ 31.38%
G 130 of 325 ~ 40%
B 93 of 325 ~ 28.62%
#66825D color CMYK value is (22,0,28,49).
CMYK: (22,0,28,49) C22M0Y28K49 (22%,0%,28%,49%) (0.22/0.00/0.28/0.49)
66 | 82 | 5D | |
---|---|---|---|
RGB | 102 | 130 | 93 |
HSL | 105° | 16.59% | 43.73% |
HSB/HSV | 105° | 28.46% | 50.98% |
CMYK | 21.54% | 0.00% | 28.46% |
49.02% |
HEX | 66 | 82 | 5D |
Decimal | 102 | 130 | 93 |
Binary | 1100110 | 10000010 | 1011101 |
Octal | 146 | 202 | 135 |
Examples of css and html codes for elements with #66825D color. Also use rgb(102,130,93) instead hex code.
.myTextColor { color: #66825D; }
<p style="color:#66825D">This sample text font color is #66825D.</p>
This text font color is #66825D.
.myBgColor { background-color: #66825D; }
<div style="background-color:#66825D">Inner text</div>
This div background color is #66825D.
.myBorderColor { border: 1px solid #66825D; }
<div style="border:3px solid #66825D">Div</div>
This div border color is #66825D.
.myOpacity80 { color: #66825D; opacity: 0.8; }
<p style="color:#66825D;opacity:0.8;">80%</p>
Text with #66825D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #66825D;}
<p style="text-shadow: 3px 3px 1px #66825D">Text here.</p>
This text has shadow with #66825D color.
.textShadow {text-shadow: 3px 3px 1px #66825D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #66825D, 5px 5px 20px red">Text here.</p>
This text has shadow with #66825D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#66825D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#66825D, Direction=45, Strength=4)">Text</p>
This text has shadow with #66825D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #66825D; -webkit-box-shadow: 1px 1px 3px 2px #66825D; box-shadow: 1px 1px 3px 2px #66825D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #66825D; -webkit-box-shadow: 1px 1px 3px 2px #66825D; box-shadow:1px 1px 3px 2px #66825D;">
Div content here</div>
This text has color #66825D on black background.
This text has color #66825D on white background.
This text has black color on #66825D background.
This text has white color on #66825D background.