Fix the terrible dark mode again

This commit is contained in:
Jonah Aragon 2021-01-15 23:13:01 -06:00
parent 10e744d42c
commit e2bc10d8e8
No known key found for this signature in database
GPG key ID: 6A957C9A9A9429F7
22 changed files with 155 additions and 91 deletions

View file

@ -1,15 +1,46 @@
/* Variables */
$theme-colors: (
"primary": #FFD06F,
"secondary": #3913B8,
"warning": #ffab6f,
"info": #C5B6FF,
"success": #b6ffb8
);
// Default Bootstrap Colors for Now
$white: #fff;
$gray-100: #f8f9fa;
$gray-200: #e9ecef;
$gray-300: #dee2e6;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #6c757d;
$gray-700: #495057;
$gray-800: #343a40;
$gray-900: #212529;
$black: #000;
// Default Bootstrap Colors for Now
$blue: #007bff;
$indigo: #6610f2;
$purple: #6f42c1;
$pink: #e83e8c;
$red: #dc3545;
$orange: #fd7e14;
$yellow: #ffc107;
$green: #28a745;
$teal: #20c997;
$cyan: #17a2b8;
// Fancy new Privacy Guides Color Scheme
$primary: #FFD06F;
$secondary: #3913B8;
$success: #03CEA4;
$info: #AA78A6;
$warning: #FB4D3D;
$danger: #CA1551;
$light: #FFF6EB;
$dark: #101619;
$body-color: #28323F;
$link-color: #3913B8;
$navbar-light-color: rgba($black, .7);
$dropdown-link-color: $navbar-light-color;
$navbar-light-active-color: $dark;
$dropdown-link-hover-color: $navbar-light-active-color;
/* Cards */
$card-shadow: 0 3px 10px 0 rgba(150, 150, 150, .2);
@ -36,3 +67,8 @@ $linkedin: #FFD06F;
$email: #FFD06F;
$diaspora: #FFD06F;
$tor: #7d4698;
/* SVG Colors */
$svg-primary: $primary !default;
$svg-dark: $body-color;
$svg-light: $light !default;