Add light theme first pass

Toggle is only temp to test. Need to move in nav for final.
Will need further adjusting colors.
This commit is contained in:
Jake
2021-05-30 19:03:36 -07:00
committed by mDuo13
parent 00a8bfd4da
commit 6e02aeb7ab
9 changed files with 275 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
@mixin prefers-color-scheme( $scheme: dark ) {
@media (prefers-color-scheme: #{$scheme}) {
@content;
}
}