| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- @import '../variables';
- @import '../override-bootstrap-variables';
- $color-themelight: rgba(183, 226, 219, 1);
- $color-primary: #97cbc3;
- $color-navbar: #0c2a44;
- $color-global: #3c6d72;
- $color-link-global: $color-global;
- $color-inline-code: #8f5313;
- $color-link-wiki: $color-global;
- $color-link-wiki-hover: rgba($color-global, 0.8);
- $bgcolor-inline-code: darken($color-themelight, 3%);
- $dark: darken($color-global, 5%);
- html[light],
- html[dark] {
- // Background colors
- $bgcolor-card: #f5f5f5;
- $bgcolor-global: lighten($color-themelight, 10%);
- $bgcolor-inline-code: #f0f0f0; //optional
- // Font colors
- $color-reversal: #eeeeee;
- $color-link: lighten($color-global, 20%);
- $color-link-hover: lighten($color-link, 20%);
- $color-link-nabvar: $color-reversal;
- $color-inline-code: #c7254e; // optional
- // List Group colors
- $color-list: $color-global;
- $bgcolor-list: lighten($color-themelight, 10%);
- $color-list-active: $color-reversal;
- $bgcolor-list-active: $color-primary;
- $color-list-hover: $color-reversal;
- // Navbar
- $bgcolor-navbar: #302e2e;
- $bgcolor-search-top-dropdown: $primary;
- $border-image-navbar: linear-gradient(to right, #5ce4ef 0%, #5953eb 100%);
- // Logo colors
- $bgcolor-logo: $color-navbar;
- $fillcolor-logo-mark: lighten(desaturate($bgcolor-inline-code, 10%), 15%);
- // Sidebar
- $bgcolor-sidebar: #0d3955;
- $bgcolor-sidebar-nav-item-active: rgba(#000000, 0.37);
- // $bgcolor-sidebar-nav-item-active: rgba(#969494, 0.3); // optional
- $text-shadow-sidebar-nav-item-active: 0px 0px 10px #0099ff; // optional
- // Sidebar resize button
- $color-resize-button: white;
- $bgcolor-resize-button: $primary;
- $color-resize-button-hover: white;
- $bgcolor-resize-button-hover: darken($bgcolor-resize-button, 5%);
- // Sidebar contents
- $bgcolor-sidebar-context: #e2f3f1;
- $color-sidebar-context: $color-global;
- // Sidebar list group
- $bgcolor-sidebar-list-group: #eff8f7; // optional
- // Icon colors
- $color-editor-icons: $color-global;
- // Border colors
- $border-color-theme: #ccc;
- $bordercolor-inline-code: #ccc8c8; // optional
- // Dropdown colors
- $bgcolor-dropdown-link-active: $growi-blue;
- $color-dropdown-link-active: $color-reversal;
- $color-dropdown-link-hover: $color-global;
- // admin theme box
- $color-theme-color-box: lighten($primary, 20%);
- // alert
- $color-alert: $color-reversal;
- // badge
- $color-badge: $color-reversal;
- @import 'apply-colors';
- @import 'apply-colors-light';
- .wiki {
- .highlighted {
- background-color: lighten($color-primary, 20%);
- }
- }
- .nav-tabs,
- .nav-tabs .nav-link.active,
- .nav-link {
- background: none;
- border-color: $color-primary;
- border-bottom-color: $color-primary;
- }
- .card,
- .card-header {
- background: none;
- border: none;
- }
- .panel {
- &,
- &.panel-white,
- &.panel-default {
- color: $color-primary;
- background-color: lighten($color-primary, 30%);
- border-color: white;
- .panel-heading {
- color: $color-primary;
- background-color: white;
- }
- ul {
- li {
- a {
- color: darken($color-primary, 15%);
- }
- }
- }
- }
- }
- /* GROWI page list */
- .page-list {
- .page-list-ul {
- > li {
- > a strong {
- color: $color-link-global;
- }
- }
- }
- }
- .rbt-menu {
- background: lighten($color-themelight, 5%);
- }
- #wrapper > #page-wrapper,
- .page-editor-preview-container {
- background-image: url('/images/themes/island/island.png');
- background-attachment: fixed;
- }
- /* Table */
- .table > thead > tr > th,
- .table > tbody > tr > th,
- .table > tfoot > tr > th,
- .table > thead > tr > td,
- .table > tbody > tr > td,
- .table > tfoot > tr > td,
- .table > thead > tr > th,
- .table-bordered {
- border-top: 1px solid $color-primary;
- }
- .table-bordered > thead > tr > th,
- .table-bordered > tbody > tr > th,
- .table-bordered > tfoot > tr > th,
- .table-bordered > thead > tr > td,
- .table-bordered > tbody > tr > td,
- .table-bordered > tfoot > tr > td {
- border: 1px solid $color-primary;
- }
- .table > thead > tr > th {
- border-bottom: 1px solid $color-primary;
- }
- .table-bordered {
- border: 1px solid $color-primary;
- }
- // login page
- .nologin {
- &.login-page {
- > #wrapper > #page-wrapper {
- background-image: unset;
- }
- }
- }
- }
|