X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/fe438bdb4537e621ca3e9f92256c11fa5a7dbb85..refs/pull/5663/head:/resources/sass/_html.scss diff --git a/resources/sass/_html.scss b/resources/sass/_html.scss index e123ee286..edaff0810 100644 --- a/resources/sass/_html.scss +++ b/resources/sass/_html.scss @@ -1,3 +1,6 @@ +@use "mixins"; +@use "vars"; + * { box-sizing: border-box; outline-color: var(--color-primary); @@ -15,15 +18,17 @@ html { &.flexbox { overflow-y: hidden; } + &.dark-mode { + background-color: #111; + } } body { - font-size: $fs-m; + font-size: vars.$fs-m; line-height: 1.6; - color: #444; + @include mixins.lightDark(color, #444, #AAA); -webkit-font-smoothing: antialiased; - background-color: #F2F2F2; height: 100%; display: flex; flex-direction: column; -} \ No newline at end of file +}