HEX: #683C52
RGB: (104,60,82)
#683C52 contains red, green and blue colors in about the same proportion. Web safe color of #683C52 is #663366 (or #636).
#683C52 color RGB value is (104,60,82).
RGB: (104,60,82) (41%,24%,32%)
R 104 of 255 = 41%
G 60 of 255 = 24%
B 82 of 255 = 32%
R + G + B ~ 32%. #683C52 is quite dark color.
R + G + B =
104 + 60 + 82 = 246 (100%)
R 104 of 246 ~ 42.28%
G 60 of 246 ~ 24.39%
B 82 of 246 ~ 33.33%
#683C52 color CMYK value is (0,42,21,59).
CMYK: (0,42,21,59) C0M42Y21K59 (0%,42%,21%,59%) (0.00/0.42/0.21/0.59)
68 | 3C | 52 | |
---|---|---|---|
RGB | 104 | 60 | 82 |
HSL | 330° | 26.83% | 32.16% |
HSB/HSV | 330° | 42.31% | 40.78% |
CMYK | 0.00% | 42.31% | 21.15% |
59.22% |
HEX | 68 | 3C | 52 |
Decimal | 104 | 60 | 82 |
Binary | 1101000 | 111100 | 1010010 |
Octal | 150 | 74 | 122 |
Examples of css and html codes for elements with #683C52 color. Also use rgb(104,60,82) instead hex code.
.myTextColor { color: #683C52; }
<p style="color:#683C52">This sample text font color is #683C52.</p>
This text font color is #683C52.
.myBgColor { background-color: #683C52; }
<div style="background-color:#683C52">Inner text</div>
This div background color is #683C52.
.myBorderColor { border: 1px solid #683C52; }
<div style="border:3px solid #683C52">Div</div>
This div border color is #683C52.
.myOpacity80 { color: #683C52; opacity: 0.8; }
<p style="color:#683C52;opacity:0.8;">80%</p>
Text with #683C52 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #683C52;}
<p style="text-shadow: 3px 3px 1px #683C52">Text here.</p>
This text has shadow with #683C52 color.
.textShadow {text-shadow: 3px 3px 1px #683C52, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #683C52, 5px 5px 20px red">Text here.</p>
This text has shadow with #683C52 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#683C52, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#683C52, Direction=45, Strength=4)">Text</p>
This text has shadow with #683C52 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #683C52; -webkit-box-shadow: 1px 1px 3px 2px #683C52; box-shadow: 1px 1px 3px 2px #683C52; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #683C52; -webkit-box-shadow: 1px 1px 3px 2px #683C52; box-shadow:1px 1px 3px 2px #683C52;">
Div content here</div>
This text has color #683C52 on black background.
This text has color #683C52 on white background.
This text has black color on #683C52 background.
This text has white color on #683C52 background.