/* ----------------------------------------------------------------------------------------------------
-- THEME VARIABLES
-- To change the theme's base theme just edit the values below.
-- The navbar should be dark by default regardless of theme!
--
-- NOTE: You can use rgb() or rgba() in place of a hex color
-- Ex: rgba( 209, 67, 67, 1 )
-- Values of rgb are 0 - 255 and value of a is 0 - 1
---------------------------------------------------------------------------------------------------- */
:root {
	--nav-primary: #101010;									/* Base navbar color */
	--nav-text: #efefef; 									/* Base font color for the logo */
	--nav-link-primary: #efefef;							/* Base navbar link color */
	--nav-link-visited: #efefef;							/* Base navbar link color (previously visited) */
	--nav-link-hover: var(--primary-color);					/* Base navbar link color (hover). NOTE: This variable references a variable that doesn't exist in this file! The variable can be found in one of the color CSS sheets! */
	--nav-link-active: #efefef;								/* Base navbar link color (active mouse1 / click) */
	--nav-selection-bg: #ffffff;							/* Selection box color (navbar only) */
	--nav-selection-color: #000000;							/* Selection content color (text -- navbar only) */
	--link-hover: #efefef;									/* Base link color (hover) */
	--link-active: #efefef;									/* Base link color (active mouse1 / click) */
}