HEX: #748868
RGB: (116,136,104)
#748868 contains red, green and blue colors in about the same proportion. Web safe color of #748868 is #669966 (or #696).
#748868 color RGB value is (116,136,104).
RGB: (116,136,104) (45%,53%,41%)
R 116 of 255 = 45%
G 136 of 255 = 53%
B 104 of 255 = 41%
R + G + B ~ 46%. #748868 is middle color (not dark and not light).
R + G + B =
116 + 136 + 104 = 356 (100%)
R 116 of 356 ~ 32.58%
G 136 of 356 ~ 38.2%
B 104 of 356 ~ 29.21%
#748868 color CMYK value is (15,0,24,47).
CMYK: (15,0,24,47) C15M0Y24K47 (15%,0%,24%,47%) (0.15/0.00/0.24/0.47)
74 | 88 | 68 | |
---|---|---|---|
RGB | 116 | 136 | 104 |
HSL | 98° | 13.33% | 47.06% |
HSB/HSV | 98° | 23.53% | 53.33% |
CMYK | 14.71% | 0.00% | 23.53% |
46.67% |
HEX | 74 | 88 | 68 |
Decimal | 116 | 136 | 104 |
Binary | 1110100 | 10001000 | 1101000 |
Octal | 164 | 210 | 150 |
Examples of css and html codes for elements with #748868 color. Also use rgb(116,136,104) instead hex code.
.myTextColor { color: #748868; }
<p style="color:#748868">This sample text font color is #748868.</p>
This text font color is #748868.
.myBgColor { background-color: #748868; }
<div style="background-color:#748868">Inner text</div>
This div background color is #748868.
.myBorderColor { border: 1px solid #748868; }
<div style="border:3px solid #748868">Div</div>
This div border color is #748868.
.myOpacity80 { color: #748868; opacity: 0.8; }
<p style="color:#748868;opacity:0.8;">80%</p>
Text with #748868 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #748868;}
<p style="text-shadow: 3px 3px 1px #748868">Text here.</p>
This text has shadow with #748868 color.
.textShadow {text-shadow: 3px 3px 1px #748868, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #748868, 5px 5px 20px red">Text here.</p>
This text has shadow with #748868 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#748868, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#748868, Direction=45, Strength=4)">Text</p>
This text has shadow with #748868 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #748868; -webkit-box-shadow: 1px 1px 3px 2px #748868; box-shadow: 1px 1px 3px 2px #748868; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #748868; -webkit-box-shadow: 1px 1px 3px 2px #748868; box-shadow:1px 1px 3px 2px #748868;">
Div content here</div>
This text has color #748868 on black background.
This text has color #748868 on white background.
This text has black color on #748868 background.
This text has white color on #748868 background.