Skip to main content

Module brand

Module brand 

Source
Expand description

Brand-kit foundation for dev-tools output (HTML meta-report, etc.).

v0.9.3 ships only the seam. The constants here are placeholders; the final palette and footer text land in a later release once the brand kit is finalized. Downstream renderers (the HTML meta-report in particular) reference these constants through CSS custom properties so the same template renders with the real palette once it lands.

These constants are not feature-gated — the HTML meta-report depends on them being available in the default build.

§Example

use dev_tools::brand;

// Placeholder values; real palette lands later.
assert!(brand::COLOR_ACCENT.starts_with('#'));
assert!(!brand::FOOTER.is_empty());

Constants§

COLOR_ACCENT
Primary accent color (links, focused borders, hero badges). Placeholder.
COLOR_BG
Background color for dark surfaces. Placeholder.
COLOR_FAIL
Color used to mark a failing verdict. Placeholder.
COLOR_FG
Foreground (body text) color. Placeholder.
COLOR_LINT
Color used to mark a lint finding (clippy etc.). Placeholder.
COLOR_PASS
Color used to mark a passing verdict. Placeholder.
COLOR_WARN
Color used to mark a warning verdict. Placeholder.
FOOTER
Footer line printed by the HTML meta-report. Placeholder.