/*
Author:  Blair Edwards 2018
This is a CSS colour scheme based off Apple's Dusk theme for XCode.

Here are some hex values:
Background		#1E2028 - 40  43  53
Dark Black		#000000 - 0   0   0
Lite Black		#535353 - 83  83  83
Dark Red		#DB2C38 - 219 44  56
Lite Red		#FB092C - 251 9   44
Dark Green		#41B645 - 65  182 69
Lite Green		#46E415 - 70  225 69
Dark Yellow		#C67C48 - 198 124 72
Lite Yellow		#FD9050 - 253 144 80
Dark Blue		#786DC4 - 120 109 196
Lite Blue		#8572F8 - 133 114 248
Dark Magenta	#B21889 - 178 24  137
Lite Magenta	#D200A0 - 210 0   160
Dark Cyan		#00A0BE - 0   160 190
Lite Cyan		#19C4F1 - 25  196 241
Dark White		#D0D0D0 - formerly 55747C - 85 116 124
Lite White		#FFFFFF - 255 255 255

Background		Background
Main Text		Lite White
Base Links		Lite Blue
Clicked Links	Dark Blue
Tables			Lite Red
Code			Lite Yellow
H1				Lite Cyan
H2				Lite Green
H3-H6			Lite Magenta
*/


:root
{
	--background0:  #1E2028;
	--background1:  #282B35;
	--termDarkBlack:  #000000;
	--termLiteBlack:  #535353;
	--termDarkRed:  #DB2C38;
	--termLiteRed:  #FB092C;
	--termDarkGreen:  #41B645;
	--termLiteGreen:  #46E415;
	--termDarkYellow:  #C67C48;
	--termLiteYellow:  #FD9050;
	--termDarkBlue:  #786DC4;
	--termLiteBlue:  #8572F8;
	--termDarkMagenta:  #B21889;
	--termLiteMagenta:  #D200A0;
	--termDarkCyan:  #00A0BE;
	--termLiteCyan:  #19C4F1;
	--termDarkWhite:  #D0D0D0;
	--termLiteWhite:  #FFFFFF;

    --contDarkBlack:  #000000;
    --contLiteBlack:  #535353;
    --contDarkRed:  #A02129;
	--contLiteRed:  #F1B2B6;
    --contDarkGreen:  #246426;
	--contLiteGreen:  #86D088;
    --contDarkYellow:  #6C4428;
	--contLiteYellow:  #DFB79B;
    --contDarkBlue:  #58508F;
	--contLiteBlue:  #C1BCE4;
    --contDarkMagenta:  #A2167D;
	--contLiteMagenta:  #E3ABD4;
    --contDarkCyan:  #005868;
    --contLiteCyan:  #73CBDB;
    --contDarkWhite:  #D0D0D0;
    --contLiteWhite:  #FFFFFF;

	--grey0:  #000000;
	--grey1:  #1E212B;
	--grey2:  #282B35;
	--grey3:  #505050;
	--grey4:  #DCDCDC;
	--grey5:  #FFFFFF;

	--plainTextColour:  var(--termLiteWhite);
	--h1Colour:  var(--termLiteCyan);
	--h2Colour:  var(--termLiteGreen);
	--h3PlusColour:  var(--termLiteMagenta);
	--codeColour:  var(--termLiteYellow);
	--backgroundColour:  var(--background1);
	--tableColour:  var(--termLiteRed);
	--linkPlainColour:  var(--termLiteBlue);
	--linkVisitedColour:  var(--termDarkBlue);
}
