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.