themes-pastel-dream/text_override.templ
Alex Dunmow de55bbebd6 initial: theme plugin pastel-dream
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/pastel-dream.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:41 +08:00

9 lines
276 B
Plaintext

package main
// pastelTextComponent renders body text with Nunito at line-height 1.75.
templ pastelTextComponent(text, class string) {
<div class={ "font-body prose max-w-none", class } style="color: hsl(var(--foreground)); line-height: 1.75;">
@templ.Raw(text)
</div>
}