HEX: #4C356A
RGB: (76,53,106)
#4C356A contains red, green and blue colors in about the same proportion. Web safe color of #4C356A is #333366 (or #336).
#4C356A color RGB value is (76,53,106).
RGB: (76,53,106) (30%,21%,42%)
R 76 of 255 = 30%
G 53 of 255 = 21%
B 106 of 255 = 42%
R + G + B ~ 31%. #4C356A is quite dark color.
R + G + B =
76 + 53 + 106 = 235 (100%)
R 76 of 235 ~ 32.34%
G 53 of 235 ~ 22.55%
B 106 of 235 ~ 45.11%
#4C356A color CMYK value is (28,50,0,58).
CMYK: (28,50,0,58) C28M50Y0K58 (28%,50%,0%,58%) (0.28/0.50/0.00/0.58)
4C | 35 | 6A | |
---|---|---|---|
RGB | 76 | 53 | 106 |
HSL | 266° | 33.33% | 31.18% |
HSB/HSV | 266° | 50.00% | 41.57% |
CMYK | 28.30% | 50.00% | 0.00% |
58.43% |
HEX | 4C | 35 | 6A |
Decimal | 76 | 53 | 106 |
Binary | 1001100 | 110101 | 1101010 |
Octal | 114 | 65 | 152 |
Examples of css and html codes for elements with #4C356A color. Also use rgb(76,53,106) instead hex code.
.myTextColor { color: #4C356A; }
<p style="color:#4C356A">This sample text font color is #4C356A.</p>
This text font color is #4C356A.
.myBgColor { background-color: #4C356A; }
<div style="background-color:#4C356A">Inner text</div>
This div background color is #4C356A.
.myBorderColor { border: 1px solid #4C356A; }
<div style="border:3px solid #4C356A">Div</div>
This div border color is #4C356A.
.myOpacity80 { color: #4C356A; opacity: 0.8; }
<p style="color:#4C356A;opacity:0.8;">80%</p>
Text with #4C356A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4C356A;}
<p style="text-shadow: 3px 3px 1px #4C356A">Text here.</p>
This text has shadow with #4C356A color.
.textShadow {text-shadow: 3px 3px 1px #4C356A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4C356A, 5px 5px 20px red">Text here.</p>
This text has shadow with #4C356A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4C356A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4C356A, Direction=45, Strength=4)">Text</p>
This text has shadow with #4C356A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4C356A; -webkit-box-shadow: 1px 1px 3px 2px #4C356A; box-shadow: 1px 1px 3px 2px #4C356A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4C356A; -webkit-box-shadow: 1px 1px 3px 2px #4C356A; box-shadow:1px 1px 3px 2px #4C356A;">
Div content here</div>
This text has color #4C356A on black background.
This text has color #4C356A on white background.
This text has black color on #4C356A background.
This text has white color on #4C356A background.