:root {
/* Standard Text Colors */
--text_color: #333333;
--link_color: #0000EE;
--link_visited_color: #551A8B;
/* From what I can tell, my use of underlines that increase in size on hover meets differenting of links without color, but these colors are fairly default for browsers and should be accessible purly with color as well: https://webaim.org/blog/wcag-2-0-and-link-colors/*/
/* Interestly, it seems color is the only means of styling visited links (https://accessibility.huit.harvard.edu/technique-visited-links), but the contrast between these link colors is only 1.17. That doesn't seem distinct enough to different them, but I haven't found any alternatives online. And it might be less assessible to break from standards.*/
/* All these colors meet a min ratio of above 7 with the colors above (via https://app.contrast-finder.org/). */
  --white: #f5f5f5;
  --brown: #ECE1D8;
  --yellow: #FFFFE9;
  --light_green: #E9ECC0;
  --green: #CFECC0; 
  --blue_green: #C0ECCB;
  --blue: #C0ECE5;
  --purple: #D8E3EC;
  --highlight: #FFE9B6;
  --bright_highlight: #FFE91E;

  /* For use only where no text is displayed. Contrast irrlevant */
  --soil: #A27E6F;
  
}

