Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 722 Bytes

File metadata and controls

40 lines (29 loc) · 722 Bytes

@python-project-templates/uitk-svelte

Shared brand identity, design tokens, and reusable Svelte components.

See BRAND.md for the canonical brand guide.

Install

pnpm add @python-project-templates/uitk-svelte

Import design tokens once at the application root:

@import '@python-project-templates/uitk-svelte/tokens.css';
<script lang="ts">
  import { BrandMark, ThemeToggle } from '@python-project-templates/uitk-svelte';
</script>

<BrandMark />
<ThemeToggle />

Develop

pnpm install
pnpm dev
pnpm check
pnpm lint
pnpm fix
pnpm test
pnpm build

After customizing the showcase, run pnpm test:e2e:update once to establish its visual baseline.