|
@@ -16,22 +16,23 @@
|
|
|
//
|
|
//
|
|
|
html[light] {
|
|
html[light] {
|
|
|
$primary: #122c55;
|
|
$primary: #122c55;
|
|
|
|
|
+ $accent: #209fd8;
|
|
|
|
|
|
|
|
// Background colors
|
|
// Background colors
|
|
|
$bgcolor-global: white;
|
|
$bgcolor-global: white;
|
|
|
- $bgcolor-inline-code: #f0f0f0; //optional
|
|
|
|
|
- $bgcolor-card: #f5f5f5;
|
|
|
|
|
|
|
+ $bgcolor-inline-code: $gray-100; //optional
|
|
|
|
|
+ $bgcolor-card: $gray-50;
|
|
|
|
|
|
|
|
// Font colors
|
|
// Font colors
|
|
|
$color-global: #112744;
|
|
$color-global: #112744;
|
|
|
- $color-reversal: #eeeeee;
|
|
|
|
|
|
|
+ $color-reversal: $light;
|
|
|
// $color-header: #2b2b2b;
|
|
// $color-header: #2b2b2b;
|
|
|
$color-link: #1938ba;
|
|
$color-link: #1938ba;
|
|
|
$color-link-hover: lighten($color-link, 20%);
|
|
$color-link-hover: lighten($color-link, 20%);
|
|
|
$color-link-wiki: $color-link;
|
|
$color-link-wiki: $color-link;
|
|
|
$color-link-wiki-hover: lighten($color-link-wiki, 20%);
|
|
$color-link-wiki-hover: lighten($color-link-wiki, 20%);
|
|
|
- $color-link-nabvar: #a7a7a7;
|
|
|
|
|
- $color-inline-code: #c7254e; // optional
|
|
|
|
|
|
|
+ $color-link-nabvar: $gray-500;
|
|
|
|
|
+ $color-inline-code: darken($red, 15%); // optional
|
|
|
|
|
|
|
|
// List Group colors
|
|
// List Group colors
|
|
|
// $color-list: $color-global; // optional
|
|
// $color-list: $color-global; // optional
|
|
@@ -50,8 +51,8 @@ html[light] {
|
|
|
// $bgcolor-table-hover: #; // optional
|
|
// $bgcolor-table-hover: #; // optional
|
|
|
|
|
|
|
|
// Navbar
|
|
// Navbar
|
|
|
- $bgcolor-navbar: #2a2929;
|
|
|
|
|
- $bgcolor-search-top-dropdown: #209fd8;
|
|
|
|
|
|
|
+ $bgcolor-navbar: $gray-900;
|
|
|
|
|
+ $bgcolor-search-top-dropdown: $accent;
|
|
|
$border-image-navbar: linear-gradient(to right, #36c9ff 0%, #36c9ff 33%, #7926ff 66%, #ff2eff 100%);
|
|
$border-image-navbar: linear-gradient(to right, #36c9ff 0%, #36c9ff 33%, #7926ff 66%, #ff2eff 100%);
|
|
|
|
|
|
|
|
// Logo colors
|
|
// Logo colors
|
|
@@ -59,19 +60,19 @@ html[light] {
|
|
|
$fillcolor-logo-mark: lighten(desaturate($bgcolor-navbar, 10%), 15%);
|
|
$fillcolor-logo-mark: lighten(desaturate($bgcolor-navbar, 10%), 15%);
|
|
|
|
|
|
|
|
// Sidebar
|
|
// Sidebar
|
|
|
- $bgcolor-sidebar: #122c55;
|
|
|
|
|
- $bgcolor-sidebar-nav-item-active: rgba(#000000, 0.37); // optional
|
|
|
|
|
|
|
+ $bgcolor-sidebar: $primary;
|
|
|
|
|
+ $bgcolor-sidebar-nav-item-active: rgba(black, 0.37); // optional
|
|
|
$text-shadow-sidebar-nav-item-active: 0px 0px 10px #0099ff; // optional
|
|
$text-shadow-sidebar-nav-item-active: 0px 0px 10px #0099ff; // optional
|
|
|
// Sidebar resize button
|
|
// Sidebar resize button
|
|
|
$color-resize-button: $color-reversal;
|
|
$color-resize-button: $color-reversal;
|
|
|
- $bgcolor-resize-button: #209fd8;
|
|
|
|
|
|
|
+ $bgcolor-resize-button: $accent;
|
|
|
$color-resize-button-hover: $color-reversal;
|
|
$color-resize-button-hover: $color-reversal;
|
|
|
$bgcolor-resize-button-hover: lighten($bgcolor-resize-button, 5%);
|
|
$bgcolor-resize-button-hover: lighten($bgcolor-resize-button, 5%);
|
|
|
// Sidebar contents
|
|
// Sidebar contents
|
|
|
$color-sidebar-context: $color-global;
|
|
$color-sidebar-context: $color-global;
|
|
|
- $bgcolor-sidebar-context: #f4f6fc;
|
|
|
|
|
|
|
+ $bgcolor-sidebar-context: $gray-100;
|
|
|
// Sidebar list group
|
|
// Sidebar list group
|
|
|
- $bgcolor-sidebar-list-group: #fafbff; // optional
|
|
|
|
|
|
|
+ $bgcolor-sidebar-list-group: $gray-50; // optional
|
|
|
|
|
|
|
|
// Subnavigation
|
|
// Subnavigation
|
|
|
// $bgcolor-subnav: #fafafa; // optional
|
|
// $bgcolor-subnav: #fafafa; // optional
|
|
@@ -89,8 +90,8 @@ html[light] {
|
|
|
$color-editor-icons: $color-global;
|
|
$color-editor-icons: $color-global;
|
|
|
|
|
|
|
|
// Border colors
|
|
// Border colors
|
|
|
- $border-color-theme: #ccc;
|
|
|
|
|
- $bordercolor-inline-code: #ccc8c8; // optional
|
|
|
|
|
|
|
+ $border-color-theme: $gray-400;
|
|
|
|
|
+ $bordercolor-inline-code: $gray-400; // optional
|
|
|
|
|
|
|
|
// Dropdown colors
|
|
// Dropdown colors
|
|
|
$bgcolor-dropdown-link-active: $growi-blue;
|
|
$bgcolor-dropdown-link-active: $growi-blue;
|