npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sylphx/silk-svelte

v2.0.5

Published

Svelte bindings for Silk - zero-runtime CSS-in-TypeScript with reactive stores

Readme

@sylphx/silk-svelte

Svelte bindings for Silk - zero-runtime CSS-in-TypeScript with reactive stores and minimal re-renders.

Installation

npm install @sylphx/silk-svelte
# or
bun add @sylphx/silk-svelte

Quick Start

1. Create Silk Config

// src/silk.config.ts
import { defineConfig } from '@sylphx/silk'
import { createSilkSvelte } from '@sylphx/silk-svelte'

export const { css, cx } = createSilkSvelte(
  defineConfig({
    colors: {
      brand: { 500: '#3b82f6' }
    },
    spacing: { 4: '1rem' }
  })
)

2. Use in Svelte Components

<script lang="ts">
  import { css } from '../silk.config'

  const button = css({
    bg: 'brand.500',
    px: 4,
    py: 2,
    color: 'white',
    _hover: { opacity: 0.8 }
  })
</script>

<button class={button}>
  Click me
</button>

3. Use in App

<script lang="ts">
  import { css } from './silk.config'
  import Button from './components/Button.svelte'

  const container = css({
    p: 4,
    display: 'flex',
    gap: 4
  })
</script>

<div class={container}>
  <h1>Welcome to Silk + Svelte!</h1>
  <Button>Click me</Button>
</div>

Features

✅ Reactive Stores Support

  • Perfect integration with Svelte's reactivity
  • Minimal re-renders
  • Optimal performance

✅ Type Safety

  • Full TypeScript support
  • Only design tokens allowed
  • Compile-time validation

✅ Zero Runtime

  • CSS extracted at build time
  • No runtime overhead
  • Smallest possible bundles

✅ Modern CSS

  • Container queries (93% support)
  • @scope (85% support)
  • @starting-style (88% support)
  • OKLCH colors, color-mix

Advanced Usage

Dynamic Styles with Reactivity

<script lang="ts">
  import { css } from './silk.config'

  let count = 0

  $: buttonStyle = css({
    bg: count > 5 ? 'red.500' : 'blue.500',
    color: 'white',
    px: 4,
    py: 2
  })
</script>

<button class={buttonStyle} on:click={() => count++}>
  Count: {count}
</button>

Component Variants

<script lang="ts">
  import { css, mergeStyles } from './silk.config'

  export let variant: 'primary' | 'secondary' = 'primary'

  const baseStyles = { px: 4, py: 2 }
  const primaryStyles = { bg: 'brand.500', color: 'white' }
  const secondaryStyles = { bg: 'gray.200', color: 'gray.900' }

  $: buttonStyle = css(
    mergeStyles(
      baseStyles,
      variant === 'primary' ? primaryStyles : secondaryStyles
    )
  )
</script>

<button class={buttonStyle}>
  <slot />
</button>

Combining Classes

<script lang="ts">
  import { css, cx } from './silk.config'

  const base = css({ p: 4 })
  const highlighted = css({ bg: 'yellow.200' })

  let isHighlighted = false
</script>

<div class={cx(base, isHighlighted && highlighted)}>
  Content
</div>

Container Queries

<script lang="ts">
  import { css } from './silk.config'

  const card = css({
    containerType: 'inline-size',
    display: 'flex',
    flexDirection: 'column',

    '@container (min-width: 400px)': {
      flexDirection: 'row',
      gap: 4
    }
  })
</script>

<div class={card}>
  <div>Left</div>
  <div>Right</div>
</div>

Props-based Styling

<script lang="ts">
  import { css } from './silk.config'
  import type { TypedStyleProps } from '@sylphx/silk-svelte'

  type Config = typeof import('./silk.config')['config']
  type StyleProps = TypedStyleProps<Config>

  export let bg: StyleProps['bg'] = 'gray.100'
  export let px: StyleProps['px'] = 4
  export let py: StyleProps['py'] = 4

  $: boxStyle = css({ bg, px, py })
</script>

<div class={boxStyle}>
  <slot />
</div>

<!-- Usage: <Box bg="brand.500" px={8} py={6}>Content</Box> -->

Vite / SvelteKit Setup

// vite.config.ts
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'

export default defineConfig({
  plugins: [
    svelte(),
    // Silk Vite plugin for CSS extraction
  ],
})
// svelte.config.js (SvelteKit)
import adapter from '@sveltejs/adapter-auto'

export default {
  kit: {
    adapter: adapter(),
    // Silk works out of the box with SvelteKit!
  }
}

Performance Comparison

| Framework | Bundle Size | Re-renders | Reactivity | |-----------|-------------|------------|------------| | Silk + Svelte | 500B | ✅ Minimal | ✅ Fine-grained | | Styled Components | 15KB | ❌ Many | ⚠️ Component-level | | Emotion | 12KB | ❌ Many | ⚠️ Component-level |

Svelte's compiler + Silk's zero-runtime = Fastest possible styling solution.

Ecosystem

Documentation

Full documentation: GitHub Repository

License

MIT © SylphX Ltd