:root {
/* 
    rgb(r,g,b)  - r=red, g=green, b=blue levels. 0-255
    rgba(r,g,b,a)  - r=red, g=green, b=blue a=opacity levels. 0-255 for r,g&b and 0-1 for opacity
*/

    /* 'bgc' Back Ground Colours */
    --bgc1: rgb(50,50,50);          /* very dark grey*/
    --bgc2: whitesmoke;             /* 'Links' Text Shadow */
    --bgc3: rgba(126,126,126,0.5);  /* 'Working', 'Drop Down Items', 'Admin Menu Select' */
    --bgc4: rgba(110,110,110,0.8);     /* Main Content Background */
    --bgc5: rgba(126,126,126,0.8);  /* Post Background */
    
    /* 'color' Foreground Text Colours */
    --color1: whitesmoke;           /* Body & Default Text */
    --color2: slategrey;            /* Site Description */
    --color3: rgb(60,60,60);        /* Link Text Shadow & Post Heading*/
    --color4: whitesmoke;           /* Site Name & Headings */
    
    /* 'border' Box Border Colours */
    --border1: silver;
    --border2: rgb(100,100,100);
    
    /* 'inputbgc' Input Box Background Colour */
    --inputbgc: rgba(200,190,190,0.7);
    --inputcolor: rgba(0,0,0,0.7);
    --shadow: rgba(0,0,0,0.7);
    
    /* 'link' Page Link Colours */
    --link: silver;
    --linkhover: pink;
}