Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Adds customized bootstrap color scheme (#37)
Browse files Browse the repository at this point in the history
* First pass at bootstrap color scheme

* Increase color scheme saturation
  • Loading branch information
djperrefort committed Jun 4, 2024
1 parent fdb32cd commit 339cb35
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/assets/scss/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
$theme-colors: (
"primary": #324871,
"secondary": #B6C5D1,
"success": #1EC074,
"info": #14b7d9,
"warning": #FACA6C,
"danger": #ED0F2D,
"light": #F3F5F6,
"dark": #212529
);

// Top navigation component
$topnav-height: 3.5rem;

// Sidebar navigation component
$sidebar-bg-light: #e2e6ea;
$sidebar-bg-light: map-get($theme-colors, 'light');
$sidebar-width: 16rem;
$sidebar-bg-dark: #31405d;
$sidebar-bg-dark: map-get($theme-colors, 'primary');

0 comments on commit 339cb35

Please sign in to comment.