org-media-sass/themes/_dark.sass
2024-11-27 02:08:59 +02:00

33 lines
1.4 KiB
Sass

@use "sass:map"
// Color Variables for Dark Theme
$primary-color: #e74c3c // Bright red for headers
$secondary-color: #ecf0f1 // Light gray for secondary headers
$tertiary-color: #1abc9c // Bright green for subheaders
$quaternary-color: #9b59b6 // Bright purple for smaller headers
$link-color-primary: #e67e22 // Bright orange for primary links
$link-color-secondary: #2980b9 // Bright blue for secondary links
$background-color: #2c3e50 // Dark navy background
$text-color: #ecf0f1 // Light gray text for contrast
$table-header-bg: #34495e // Darker shade of blue for table headers
$table-border-color: #95a5a6 // Lighter gray border color
// Inverse Link Colors
$inverse-link-color: #2c3e50 // Dark background for inverse links
$inverse-link-hover-color: #ecf0f1 // Light text color for inverse link hover
// font variables
$primary-font: 'fira-mono'
$secondary-font: 'roboto'
// Header Sizes and Colors Map
$header-styles: (h1: (size: 2em, color: $primary-color, border-size: 2px))
$header-styles: map.set($header-styles, h2, (size: 1.75em, color: $secondary-color, border-size: 2px))
$header-styles: map.set($header-styles, h3, (size: 1.3em, color: $tertiary-color, border-size: 1px))
$header-styles: map.set($header-styles, h4, (size: 1.25em, color: $quaternary-color, border-size: 1px))
// Code Block Background
$code-bg-color: #34495e // Darker background color for code blocks
$code-font-color: $text-color