/** customize your theme in here! this should be the only file you need to edit per theme **/

/** images **/
:root {
	--banner: url(/images/fillerlogo.jpg);
}
	

/** theme colors **/
:root {
    --bodybg: #2b2c30;
	--bodybgfaded: #2b2c30ad;
	
    --dark: #2a323b;
	--darkfaded: #2a323bad;
	
    --meddark: #394551;
	--medfaded: #394551ad;
	
    --light: #48607A;
	--lightfaded: #48607Aad;
    
    --accent: #A8975A;
	--accentfaded: #A8975Aad;
}

/**--- 
COLORS:

-> bodybg and bodybgfaded should be the same, except bodybgfaded has "ad" at the end of the HEX, ex: #000000ad
-> same rule for others ((this gives it a slight transparency))

-> dark, meddark, and light work best as different shades of the same hue
---> if you make them separate hues, keep the shades relative 

-> accent should be a color that pops but is not too saturated or bright

--**/
