--- title: false styles: true --- // ----------------------------------------------------------------- // IMPORT BOOTSTRAP FUNCTIONS & VARIABLES // ----------------------------------------------------------------- @import "lib/bootstrap-5.0.2/scss/functions"; @import "lib/bootstrap-5.0.2/scss/variables"; // ----------------------------------------------------------------- // IMPORT THEME COLORS // ----------------------------------------------------------------- @import "theme/scheme-brew", "theme/scheme-dark", "theme/scheme-light"; html { @media (prefers-color-scheme: light) { &:not([data-mode]), &[data-mode=light] { @include light-scheme; } &[data-mode=dark] { @include dark-scheme; } } @media (prefers-color-scheme: dark) { &:not([data-mode]), &[data-mode=dark] { @include dark-scheme; } &[data-mode=light] { @include light-scheme; } } } $layout: {{ page.layout | default: 'default' }}; $header: {{ page.header | default: false }}; $top-panel: {{ page.top-panel | default: false }}; $bottom-panel: {{ page.bottom-panel | default: false }}; $foot-panel: {{ page.foot-panel | default: false }}; $to-top: {{ page.to-top | default: site.to-top | default: false }}; $content-width: {{ page.content-width | default: site.content-width | default: '920px' }}; @import "{{ site.theme }}"; /* APPEND CUSTOM STYLES BELOW */