// _midnight-ledger.sass @use "sass:map" @use "sass:color" @use '../fonts' as fonts $list-padding-left: 1.3em // Color Variables // Colors $primary-color: #5294e2 // Soft blue for links $secondary-color: #87cba4 // Muted teal-green for secondary elements $tertiary-color: #e2a47e // Warm coral for tertiary elements $quaternary-color: #c3c9e8 // Light lavender-gray for highlights $quinary-color: #fcdba9 // Soft peach for accents $code-background-color: #2a2e37 // Dark slate for code blocks $code-text-color: #f0f4f8 // Pale blue-gray for code text $note-background-color: #333842 // Dark gray-blue for note background $note-border-color: $quinary-color // Peach accent for note borders // Text and Background $text-color: #d1d5db // Light gray for text $background-color: #1a1c22 // Deep charcoal background for reduced eye strain // Links, Anchors $anchor-color: color.adjust($primary-color, $lightness: 10%) $anchor-hover-color: color.adjust($primary-color, $lightness: -10%) $toc-anchor-color: color.adjust($secondary-color, $lightness: -5%) $toc-anchor-hover-color: color.adjust($secondary-color, $lightness: -10%) // Tables $table-header-bg: #3b414d // Dark gray for table headers $table-border-color: #505866 // Subtle muted blue-gray for borders // Header Sizes and Colors $default-header-sizes: () $default-header-sizes: map.set($default-header-sizes, h1, 2.4em) $default-header-sizes: map.set($default-header-sizes, h2, 2em) $default-header-sizes: map.set($default-header-sizes, h3, 1.8em) $default-header-sizes: map.set($default-header-sizes, h4, 1.5em) $default-header-sizes: map.set($default-header-sizes, h5, 1.3em) $default-header-sizes: map.set($default-header-sizes, h6, 1.1em) $default-header-colors: () $default-header-colors: map.set($default-header-colors, h1, $primary-color) $default-header-colors: map.set($default-header-colors, h2, $secondary-color) $default-header-colors: map.set($default-header-colors, h3, $tertiary-color) $default-header-colors: map.set($default-header-colors, h4, $quaternary-color) // Initialize empty maps for margins $default-header-margins-sides: () $default-header-margins-vertical: () // Dynamically populate sides map $default-header-margins-sides: map.set($default-header-margins-sides, h1, (left: 0, right: 0)) $default-header-margins-sides: map.set($default-header-margins-sides, h2, (left: 0, right: 0)) $default-header-margins-sides: map.set($default-header-margins-sides, h3, (left: 0, right: 0)) $default-header-margins-sides: map.set($default-header-margins-sides, h4, (left: 0, right: 0)) $default-header-margins-sides: map.set($default-header-margins-sides, h5, (left: 0, right: 0)) $default-header-margins-sides: map.set($default-header-margins-sides, h6, (left: 0, right: 0)) // Dynamically populate vertical map $default-header-margins-vertical: map.set($default-header-margins-vertical, h1, (top: 1em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h2, (top: 1em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h3, (top: 1em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h4, (top: 1em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h5, (top: 1em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h6, (top: 1em, bottom: 0.5em)) // Fonts $primary-font: 'Roboto Slab', serif // Modern serif for professional content $secondary-font: 'Source Sans Pro', sans-serif // Clean sans-serif for secondary content