56 lines
1.9 KiB
SCSS
56 lines
1.9 KiB
SCSS
$light-color: #ffffff;
|
|
$dark-color: #2a0045ff ;
|
|
$primary-color: #183c8f;
|
|
$secondary-color: rgb(143, 33, 191);
|
|
$tertiary-color: #4eca2cff;
|
|
// #{}
|
|
// #{$tertiary-color}
|
|
:root {
|
|
|
|
/* === Cover / Landing area === */
|
|
--cover-text-color: #{$secondary-color};
|
|
/* Used for Landing screen menu buttons, but potentially usable for highlighting other things */
|
|
--highlight: #{$primary-color};
|
|
--highlight-contrast: #{$light-color};
|
|
/*inverse colors used for :hover */
|
|
--highlight-inverse: #{$secondary-color};
|
|
--highlight-inverse-contrast: rgb(255, 255, 255);
|
|
|
|
/* visual guard around title and description, when the feature is enabled */
|
|
--cover-title-and-description-guard-bg-color: #{$light-color};
|
|
// --cover-title-text-shadow: rgb(119, 45, 0) 1px 1px 5px;
|
|
|
|
|
|
/* === sticky top/left navigation menus === */
|
|
--sticky-menu-text-color: #{$light-color};
|
|
|
|
|
|
/* === Alternating content (post) sections === */
|
|
/* Light section - text color */
|
|
--section-light-text-color:#{$light-color};
|
|
/* Light section - background color */
|
|
--section-light-bg-color: #{$primary-color};
|
|
|
|
/* Dark section - text color */
|
|
--section-dark-text-color: #{$primary-color};
|
|
/* Dark section - background color */
|
|
--section-dark-bg-color: #{$light-color};
|
|
|
|
/* Light&Dark section >quote. Suppressive color, compared to 'Light section - text color'*/
|
|
--section-uni-quote: grey;
|
|
/* Light&Dark section `code` a bit darker than 'Light section - background color' */
|
|
--section-uni-code-bg-color: #e0ded7;
|
|
|
|
/* === Single pages=== */
|
|
--single-page-text-color: var(--section-light-text-color);
|
|
--single-page-bg-color: var(--section-light-bg-color);
|
|
|
|
/* === Footer === */
|
|
--footer-color-background: #22343a;
|
|
--footer-color: #bbc7cc;
|
|
|
|
/* === Lists === */
|
|
/* define list element for unnumbered lists, leave empty for default list element */
|
|
--ul-li-icon: fa-asterisk;
|
|
}
|