/*
   Lore Engine - Beta Universe Systems app
   Copyright (c) 2026 Beta Universe Systems LLC / John Molt
   All rights reserved.

   2026-06-05 4:04 AM PT

   wwwroot/styles/theme.css

   BUS Design Tokens. The Lore Engine palette: orangered accent,
   dark sticky header, light tan parchment panels, blue secondary.
   Token names follow the --bus-* convention and are referenced by
   app.css and every component <style> block. Define here once;
   reference everywhere; never hardcode a color.
*/

:root {
    --bus-orange:       orangered;
    --bus-orange-dark:  #9c3e08;
    --bus-orange-warn:  #ff8b48;
    --bus-panel:        #C5BBB3;
    --bus-panel-dark:   #a89e96;
    --bus-header:       #212324;
    --bus-msg-back:     #283a44;
    --bus-primary:      #385c8e;
    --bus-primary-dark: #283a44;
    --bus-white:        #fbfbfb;
    --bus-black:        #212121;
    --bus-bg:           #c8c6c3;
    --bus-text-muted:   #757575;
    --bus-shadow:       5px 5px 5px 0px rgba(0,0,0,0.75);
    --bus-radius:       3px;
    --bus-font-display: 'Barlow Condensed', sans-serif;
    --bus-font-body:    'Source Sans 3', sans-serif;
}