HEX: #C37BDA
RGB: (195,123,218)
#C37BDA contains mainly red and blue colors. Web safe color of #C37BDA is #CC66CC (or #C6C).
#C37BDA color RGB value is (195,123,218).
RGB: (195,123,218) (76%,48%,85%)
R 195 of 255 = 76%
G 123 of 255 = 48%
B 218 of 255 = 85%
R + G + B ~ 70%. #C37BDA is quite light color.
R + G + B =
195 + 123 + 218 = 536 (100%)
R 195 of 536 ~ 36.38%
G 123 of 536 ~ 22.95%
B 218 of 536 ~ 40.67%
#C37BDA color CMYK value is (11,44,0,15).
CMYK: (11,44,0,15) C11M44Y0K15 (11%,44%,0%,15%) (0.11/0.44/0.00/0.15)
C3 | 7B | DA | |
---|---|---|---|
RGB | 195 | 123 | 218 |
HSL | 285° | 56.21% | 66.86% |
HSB/HSV | 285° | 43.58% | 85.49% |
CMYK | 10.55% | 43.58% | 0.00% |
14.51% |
HEX | C3 | 7B | DA |
Decimal | 195 | 123 | 218 |
Binary | 11000011 | 1111011 | 11011010 |
Octal | 303 | 173 | 332 |
Examples of css and html codes for elements with #C37BDA color. Also use rgb(195,123,218) instead hex code.
.myTextColor { color: #C37BDA; }
<p style="color:#C37BDA">This sample text font color is #C37BDA.</p>
This text font color is #C37BDA.
.myBgColor { background-color: #C37BDA; }
<div style="background-color:#C37BDA">Inner text</div>
This div background color is #C37BDA.
.myBorderColor { border: 1px solid #C37BDA; }
<div style="border:3px solid #C37BDA">Div</div>
This div border color is #C37BDA.
.myOpacity80 { color: #C37BDA; opacity: 0.8; }
<p style="color:#C37BDA;opacity:0.8;">80%</p>
Text with #C37BDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C37BDA;}
<p style="text-shadow: 3px 3px 1px #C37BDA">Text here.</p>
This text has shadow with #C37BDA color.
.textShadow {text-shadow: 3px 3px 1px #C37BDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C37BDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C37BDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C37BDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C37BDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C37BDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C37BDA; -webkit-box-shadow: 1px 1px 3px 2px #C37BDA; box-shadow: 1px 1px 3px 2px #C37BDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C37BDA; -webkit-box-shadow: 1px 1px 3px 2px #C37BDA; box-shadow:1px 1px 3px 2px #C37BDA;">
Div content here</div>
This text has color #C37BDA on black background.
This text has color #C37BDA on white background.
This text has black color on #C37BDA background.
This text has white color on #C37BDA background.