|
6 | 6 | // Imported BEFORE _bootstrap-overrides.scss so they can be referenced there. |
7 | 7 | // ========================================================================== |
8 | 8 |
|
| 9 | +@use "sass:color"; |
| 10 | + |
9 | 11 | // --------------------------------------------------------------------------- |
10 | 12 | // Custom Color Foundation |
11 | 13 | // --------------------------------------------------------------------------- |
|
15 | 17 | $font-color: #67748e !default; // Muted body text |
16 | 18 | $h-color: #344767 !default; // Heading text |
17 | 19 |
|
| 20 | +$white: #fff; |
| 21 | +$gray-100: #f6f9fc; |
| 22 | +$gray-200: #e9ecef; |
| 23 | +$gray-300: #dee2e6; |
| 24 | +$gray-400: #ced4da; |
| 25 | +$gray-500: #adb5bd; |
| 26 | +$gray-600: #8898aa; // Line footer color |
| 27 | +$gray-700: #525f7f; // Line p color |
| 28 | +$gray-800: #32325d; // Line heading color |
| 29 | +$gray-900: #212529; |
| 30 | +$black: #000; |
| 31 | + |
| 32 | +$blue: #5e72e4; |
| 33 | +$indigo: #5603ad; |
| 34 | +$purple: #8965e0; |
| 35 | +$pink: #f3a4b5; |
| 36 | +$red: #f5365c; |
| 37 | +$orange: #fb6340; |
| 38 | +$yellow: #ffd600; |
| 39 | +$green: #2dce89; |
| 40 | +$teal: #11cdef; |
| 41 | +$cyan: #2bffc6; |
| 42 | + |
18 | 43 | // --------------------------------------------------------------------------- |
19 | 44 | // Genealogy Sex Colors |
20 | 45 | // --------------------------------------------------------------------------- |
21 | 46 |
|
22 | | -$f-color: #fff4f9 !default; // Female |
23 | | -$m-color: #f4fdff !default; // Male |
24 | | -$u-color: #fff !default; // Unknown |
25 | | -$x-color: #fceaa1 !default; // Other |
| 47 | + |
| 48 | +$f-color: $red !default; |
| 49 | +$m-color: $teal !default; |
| 50 | +$u-color: $gray-700 !default; |
| 51 | +$x-color: $yellow !default; |
| 52 | + |
| 53 | +$f-background: color.scale($f-color, $lightness: 95%) !default; |
| 54 | +$m-background: color.scale($m-color, $lightness: 95%) !default; |
| 55 | +$u-background: $white !default; |
| 56 | +$x-background: color.scale($x-color, $lightness: 95%) !default; |
26 | 57 |
|
27 | 58 | // --------------------------------------------------------------------------- |
28 | 59 | // Layout Options |
|
0 commit comments