773B0E : Hex Color Code
Color-Conversion
The hexadecimal value of the color #773b0e is made up of the RGB values of (119 ,59 ,14) . The red value is 119, the green value is 59, and the blue value is 14. This color has a hue of 25, saturation of 78, and a lightness value of26 when represented in HSL. In four color CMYK, the color has a process value of 0, 50, 88, and 53. The web safe color of #773b0e is #763a0f. Overall, the color #773b0e is predominantly maroon.
Variations
This section aims to generate accurate tints (created by adding pure white) and shades (created by adding pure black) of the chosen color in increments of 10%.
Shaders
#773B0E
#6A340C
#5D2E0B
#4F2709
#422108
#351A06
#281405
#1A0D03
#0D0702
#000000
Tints
#773B0E
#865129
#956744
#A47C5E
#B39279
#C3A894
#D2BEAF
#E1D3C9
#F0E9E4
#FFFFFF
Color Combinations
Different color harmonies can evoke different moods, and it can be helpful to use them as a starting point for brainstorming color combinations. By exploring different color harmonies, you can identify colors that work well together and create a cohesive color palette for your project.
Color Complementary
#763A0F
#0F4B76
Color Split Complementary
#763A0F
#0F766D
Color Triadic
#763A0F
#0F763A
#3A0F76
Color Analogous
#763A0F
#766D0F
#4B760F
Color Monochromatic
#763A0F
#9B4C13
#C15E18
#E3711F
#E88944
#EDA06A
#F1B88F
#F6D0B4
#FAE7DA
Color Preview
Developer
Tailwind
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'maroon': '#773b0e',
},
}
},
}
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'maroon': {
100: '#e88944',
200: '#e3711f',
300: '#c15e18',
400: '#9b4c13',
500: '#763a0f',
600: '#773b0e',
700: '#6a340c',
800: '#5d2e0b',
900: '#4f2709',
},
},
}
},
}
CSS
//global.css
.mybgcolor {background-color:#773b0e; }
.myforecolor {color:#773b0e; }
.mybordercolor {border:3px solid #773b0e;}
//index.html
<p style="color:#773b0e;">Text here</p>
//index.html
<div style="background-color:#773b0e;">content here</div>
//index.html
<div style="border: 2px solid #773b0e;">content here</div>
//index.html
<p style="text-shadow: 4px 4px 2px #773b0e">Text here</p>
//index.html
<div style="-moz-box-shadow: 1px 1px 3px 2px #773b0e;
-webkit-box-shadow: 1px 1px 3px 2px #773b0e;
box-shadow: 1px 1px 3px 2px #773b0e;">
Content here</div>