Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
bmux Theme Plugin
Owns runtime theme selection for bmux. Core configuration still declares the
startup theme with [appearance].theme; this plugin handles live selection,
preview, persistence, additive theme stacks, and generic theme-extension
fanout.
Theme Stacks
BMUX accepts either a single theme or an ordered stack:
[]
= "cyberpunk"
= ["cyberpunk", "mode-aware"]
When themes is present, themes are merged from left to right. Later layers
paint on top of earlier layers and may override or extend appearance fields,
mode-specific overlays, content effects, and plugin extension tables. Plugin
extension tables are deep-merged, so decoration component maps can be composed
by id across multiple theme files.
For stacks where the base appearance is functionally important, split visual identity from component packs:
[]
= ["performance", "mode-aware"]
= ["performance", "pong", "rainbow-snake"]
appearance_themes supplies runtime colors/status/mode appearance.
component_themes supplies theme settings and plugin-owned component
definitions. For bmux.decoration, appearance layers keep base border chrome
while stripping scripted components; component-only layers preserve component
maps, top-level scripts, script access, input, and animation hints without
letting fun component packs replace the base border chrome.
When only theme is set, BMUX treats it as the base theme and applies the
bundled mode-aware layer by default. mode-aware adds visible mode cues
without replacing the selected theme's visual identity.
Plugin Extensions
Theme files can include plugin-owned extension tables. The theme plugin stores and merges these tables generically; the owning plugin validates and interprets the final value.
[]
= "pulse"
[]
= "pulse"
= 30
This keeps the theme runtime domain-agnostic while allowing plugins such as
bmux.decoration to expose richer theme behavior. Users can also add final
component overrides and generic pane targets in the bmux.theme plugin
settings, without creating a separate combination theme:
[]
= ["performance", "rainbow-snake"]
[]
= ["performance.border"]
= ["performance.header"]
[]
= { = "all-panes" }
= { = "focused-pane" }
= { = "unfocused-panes" }