halloween.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. @import '../variables';
  2. @import '../override-bootstrap-variables';
  3. $themecolor: #aa4a04;
  4. $themelight: #f0f8ff;
  5. $accentcolor: #ffd700;
  6. $bordercolor: #7e0d7e;
  7. // == Define Bootstrap theme colors
  8. //
  9. // colors for overriding bootstrap $theme-colors
  10. $primary: $themecolor;
  11. $light: lighten($secondary, 10%);
  12. // $info: #;
  13. // $success: #;
  14. // $warning: #;
  15. // $danger: #;
  16. // $dark: #;
  17. .growi:not(.login-page) {
  18. #wrapper > .navbar {
  19. background-image: url(/images/themes/halloween/halloween-navbar.jpg);
  20. }
  21. // add background-image
  22. #page-wrapper,
  23. .page-editor-preview-container {
  24. background-image: url('/images/themes/halloween/halloween.jpg');
  25. }
  26. }
  27. //== Light Mode
  28. //
  29. html[light],
  30. html[dark] {
  31. // Background colors
  32. $bgcolor-global: #050000;
  33. $bgcolor-inline-code: #1f1f22; //optional
  34. $bgcolor-card: #f5f5f5;
  35. // Font colors
  36. $color-global: #e9af2b;
  37. $color-reversal: #eeeeee;
  38. // $color-header: #2b2b2b;
  39. $color-link: #aa97cb;
  40. $color-link-hover: lighten($color-link, 20%);
  41. $color-link-wiki: #aa97cb;
  42. $color-link-wiki-hover: lighten($color-link-wiki, 20%);
  43. $color-link-nabvar: #a7a7a7;
  44. $color-inline-code: #c7254e; // optional
  45. // List Group colors
  46. $color-list: #979797;
  47. $bgcolor-list: transparent;
  48. $color-list-active: $color-reversal;
  49. $bgcolor-list-active: $primary;
  50. $color-list-hover: $themecolor;
  51. // Search Top
  52. $color-search: $primary;
  53. // Navbar
  54. $bgcolor-navbar: #eceded;
  55. $bgcolor-search-top-dropdown: $primary;
  56. $border-image-navbar: linear-gradient(90deg, #e3b7ff 0%, #134774 100%);
  57. // Logo colors
  58. $bgcolor-logo: darken($themecolor, 10%);
  59. $fillcolor-logo-mark: #dedede;
  60. // Sidebar
  61. $bgcolor-sidebar: #162b33;
  62. $bgcolor-sidebar-nav-item-active: rgba(#969494, 0.3); // optional
  63. $text-shadow-sidebar-nav-item-active: 0px 0px 10px #969494; // optional
  64. // Sidebar contents
  65. $color-sidebar-context: #aa97cb;
  66. $bgcolor-sidebar-context: #1d2126;
  67. // Sidebar list group
  68. $bgcolor-sidebar-list-group: #2c2926; // optional
  69. // Sidebar resize button
  70. $color-resize-button: #effcfa;
  71. $bgcolor-resize-button: $primary;
  72. $color-resize-button-hover: #effcfa;
  73. $bgcolor-resize-button-hover: lighten($bgcolor-resize-button, 5%);
  74. // Icon colors
  75. $color-editor-icons: $color-global;
  76. // Border colors
  77. $border-color-theme: #ccc; // former: `$navbar-border: #ccc;`
  78. $bordercolor-inline-code: #4d4d4d; // optional
  79. // Dropdown colors
  80. $bgcolor-dropdown-link-active: $primary;
  81. $color-dropdown-link-active: $color-reversal;
  82. $color-dropdown-link-hover: $color-global;
  83. // admin theme box
  84. $color-theme-color-box: lighten($primary, 20%);
  85. @import 'apply-colors';
  86. @import 'apply-colors-dark';
  87. // Table
  88. .table {
  89. color: $color-global;
  90. }
  91. pre {
  92. color: #edba4a;
  93. background: #000000;
  94. }
  95. }