]> BookStack Code Mirror - bookstack/blobdiff - resources/sass/_html.scss
Code cleanup, bug squashing
[bookstack] / resources / sass / _html.scss
index de48c8ed1bbe8eac685067c399c583faafe0abdc..57869d6520b04aa6a90ea5405c36d8a95de0927f 100644 (file)
@@ -1,6 +1,7 @@
 * {
   box-sizing: border-box;
-  outline-color: #444444;
+  outline-color: var(--color-primary);
+  outline-width: 1px;
 }
 
 *:focus {
@@ -14,12 +15,14 @@ html {
   &.flexbox {
     overflow-y: hidden;
   }
+  &.dark-mode {
+    background-color: #111;
+  }
 }
 
 body {
   font-size: $fs-m;
   line-height: 1.6;
-  color: #444;
+  @include lightDark(color, #444, #AAA);
   -webkit-font-smoothing: antialiased;
-  background-color: #F2F2F2;
 }
\ No newline at end of file