vagabond-rpg-foundryvtt/styles/scss/vagabond.scss
Cal Corum 8b9daa1f36 Add light/dark theme system with CSS variables, fix ProseMirror editors
Theme System:
- Add _theme-variables.scss with light (parchment) and dark color palettes
- Register theme options in system.json for Foundry v13 color scheme support
- Convert all SCSS color variables to CSS custom properties
- Update base, mixins, components, and sheet styles for theme support
- Add _applyThemeClass() to actor and item sheet classes

ProseMirror Editor Fix (v13 ApplicationV2):
- Replace {{editor}} helper with <prose-mirror> custom element
- Add TextEditor.enrichHTML() for rich text content preparation
- Update all 8 item templates (spell, weapon, armor, equipment, etc.)
- Fix toolbar hiding content by renaming wrapper to .editor-wrapper
- Style prose-mirror with sticky toolbar and proper flex layout

Roll Dialog & Chat Card Styling:
- Complete roll dialog styling with favor/hinder toggles, info panels
- Complete chat card styling with roll results, damage display, animations
- Mark tasks 5.7 and 5.8 complete in roadmap
- Add task 5.11 for deferred resizable editor feature

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 15:36:16 -06:00

28 lines
496 B
SCSS

// Vagabond RPG - Foundry VTT System Styles
// ==========================================
// Configuration
@import "variables";
@import "mixins";
// Theme system (CSS custom properties)
@import "theme-variables";
// Base styles
@import "base";
// Components
@import "components/buttons";
@import "components/forms";
@import "components/tabs";
// Sheets
@import "sheets/actor-sheet";
@import "sheets/item-sheet";
// Dialogs
@import "dialogs/roll-dialog";
// Chat
@import "chat/chat-cards";