Skip to content

Commit

Permalink
Integrating new SCSS rules for improved visual experience
Browse files Browse the repository at this point in the history
  • Loading branch information
njlyon0 committed Jul 29, 2024
1 parent 53763eb commit 1d4d4f2
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 5 deletions.
28 changes: 23 additions & 5 deletions lyondark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,33 @@ $font-size: 25px;
$navbar-bg: $orange-3; // navbar
$navbar-fg: $blue-4; // navbar foreground elements
$navbar-hl: $blue-3; // highlight color when on a page
$body-bg: $gray-4; // page background
$body-color: $cream; // page text
$footer-bg: $blue-3; // footer
$body-bg: $gray-4; // page background
$body-color: $cream; // page text
$footer-bg: $blue-3; // footer
$footer-text: $cream; // footer text
$link-color: $blue-2; // hyperlinks
$link-color: $blue-2; // hyperlinks

// Inline code
$code-bg: $gray-3; // inline code background color
$code-color: $cream; // inline code text color

// Code blocks
$code-block-bg: $blue-3; // code block background color
$code-block-bg: $blue-3; // code block background color

/*-- scss:rules --*/

// Code chunk ouput
pre code:not(.sourceCode) { background-color: $gray-0; }

// Active tabset panel (tab then tab content)
.nav-tabs .nav-link.active {
background-color: $gray-3;
color: $cream;
}
.tab-content { background-color: $gray-3; }

// Navbar dropdown elements
.dropdown-menu{
--bs-dropdown-link-hover-color: #191919;
--bs-dropdown-link-hover-bg: #077DC2;
}
18 changes: 18 additions & 0 deletions lyonlight.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,21 @@ $code-color: $gray-3; // inline code text color

// Code blocks
$code-block-bg: $gray-0; // code block background color

/*-- scss:rules --*/

// Code chunk ouput
pre code:not(.sourceCode) { background-color: $blue-1; }

// Active tabset panel (tab then tab content)
.nav-tabs .nav-link.active {
background-color: #FFF;
color: $black;
}
.tab-content { background-color: #FFF; }

// Navbar dropdown elements
.dropdown-menu{
--bs-dropdown-link-hover-color: #F4F3EE;
--bs-dropdown-link-hover-bg: #01BAEF;
}

0 comments on commit 1d4d4f2

Please sign in to comment.