HEX: #483F79
RGB: (72,63,121)
#483F79 contains red, green and blue colors in about the same proportion. Web safe color of #483F79 is #333366 (or #336).
#483F79 color RGB value is (72,63,121).
RGB: (72,63,121) (28%,25%,47%)
R 72 of 255 = 28%
G 63 of 255 = 25%
B 121 of 255 = 47%
R + G + B ~ 33%. #483F79 is quite dark color.
R + G + B =
72 + 63 + 121 = 256 (100%)
R 72 of 256 ~ 28.13%
G 63 of 256 ~ 24.61%
B 121 of 256 ~ 47.27%
#483F79 color CMYK value is (40,48,0,53).
CMYK: (40,48,0,53) C40M48Y0K53 (40%,48%,0%,53%) (0.40/0.48/0.00/0.53)
48 | 3F | 79 | |
---|---|---|---|
RGB | 72 | 63 | 121 |
HSL | 249° | 31.52% | 36.08% |
HSB/HSV | 249° | 47.93% | 47.45% |
CMYK | 40.50% | 47.93% | 0.00% |
52.55% |
HEX | 48 | 3F | 79 |
Decimal | 72 | 63 | 121 |
Binary | 1001000 | 111111 | 1111001 |
Octal | 110 | 77 | 171 |
Examples of css and html codes for elements with #483F79 color. Also use rgb(72,63,121) instead hex code.
.myTextColor { color: #483F79; }
<p style="color:#483F79">This sample text font color is #483F79.</p>
This text font color is #483F79.
.myBgColor { background-color: #483F79; }
<div style="background-color:#483F79">Inner text</div>
This div background color is #483F79.
.myBorderColor { border: 1px solid #483F79; }
<div style="border:3px solid #483F79">Div</div>
This div border color is #483F79.
.myOpacity80 { color: #483F79; opacity: 0.8; }
<p style="color:#483F79;opacity:0.8;">80%</p>
Text with #483F79 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #483F79;}
<p style="text-shadow: 3px 3px 1px #483F79">Text here.</p>
This text has shadow with #483F79 color.
.textShadow {text-shadow: 3px 3px 1px #483F79, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #483F79, 5px 5px 20px red">Text here.</p>
This text has shadow with #483F79 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#483F79, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#483F79, Direction=45, Strength=4)">Text</p>
This text has shadow with #483F79 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #483F79; -webkit-box-shadow: 1px 1px 3px 2px #483F79; box-shadow: 1px 1px 3px 2px #483F79; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #483F79; -webkit-box-shadow: 1px 1px 3px 2px #483F79; box-shadow:1px 1px 3px 2px #483F79;">
Div content here</div>
This text has color #483F79 on black background.
This text has color #483F79 on white background.
This text has black color on #483F79 background.
This text has white color on #483F79 background.