|
|
@@ -0,0 +1,54 @@
|
|
|
+@import '../variables';
|
|
|
+
|
|
|
+$basecolor:#061f2f;
|
|
|
+$themecolor:#0090c8;
|
|
|
+
|
|
|
+$linkcolor: #97d1f0;
|
|
|
+
|
|
|
+$topbar:#27343b;
|
|
|
+$sidebar:#061f2f;
|
|
|
+$bodycolor:#061f2f;
|
|
|
+$headingtext: #fff;
|
|
|
+$bodytext: #d3d4d4;
|
|
|
+$linktext: $linkcolor;
|
|
|
+$linktext-hover: rgba($linktext, 0.8);
|
|
|
+$sidebar-text:#d3d4d4;
|
|
|
+$dark-themecolor:#4f5467;
|
|
|
+
|
|
|
+$primary: $themecolor;
|
|
|
+
|
|
|
+$logo-mark-fill: lighten(desaturate($topbar, 10%), 15%);
|
|
|
+$wikilinktext: $linkcolor;
|
|
|
+$wikilinktext-hover: rgba($linktext, 0.8);
|
|
|
+
|
|
|
+$dark: darken($bodytext, 5%);
|
|
|
+$border: #fff;
|
|
|
+$navbar-border: lighten($basecolor, 25%);
|
|
|
+$active-navbar-border: darken($navbar-border, 3%);
|
|
|
+$btn-default-bgcolor: darken($basecolor, 10%);
|
|
|
+$inline-code-color: #c1f1f0;
|
|
|
+$inline-code-bg: #0a121b;
|
|
|
+
|
|
|
+@import 'apply-colors';
|
|
|
+@import 'apply-colors-dark';
|
|
|
+
|
|
|
+.wiki {
|
|
|
+ .highlighted {
|
|
|
+ background-color: lighten($themecolor, 20%);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.panel {
|
|
|
+ &, &.panel-white, &.panel-default {
|
|
|
+ border-color: $bodytext;
|
|
|
+ .panel-heading {
|
|
|
+ color: $basecolor;
|
|
|
+ background-color: 1px solid $bodytext;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+pre {
|
|
|
+ color: $bodytext;
|
|
|
+ background-color: $inline-code-bg;
|
|
|
+}
|