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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sylphx/silk-solid

v2.0.6

Published

Solid.js bindings for Silk - zero-runtime CSS-in-TypeScript with fine-grained reactivity

Readme

@sylphx/silk-solid

Solid.js bindings for Silk - zero-runtime CSS-in-TypeScript with fine-grained reactivity and optimal performance.

Installation

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

Quick Start

1. Create Silk Config

// src/silk.config.ts
import { defineConfig } from '@sylphx/silk'
import { createSilkSolid } from '@sylphx/silk-solid'

export const { styled, Box, Flex, css } = createSilkSolid(
  defineConfig({
    colors: {
      brand: { 500: '#3b82f6' }
    },
    spacing: { 4: '1rem' }
  })
)

2. Use Styled Components

// src/components/Button.tsx
import { styled } from '../silk.config'

export const Button = styled('button', {
  bg: 'brand.500',
  px: 4,
  py: 2,
  color: 'white',
  _hover: { opacity: 0.8 }
})

3. Use in App

// src/App.tsx
import { Button } from './components/Button'
import { Box } from './silk.config'

function App() {
  return (
    <Box px={4} py={6}>
      <h1>Welcome to Silk + Solid!</h1>
      <Button>Click me</Button>
    </Box>
  )
}

export default App

Features

✅ Fine-Grained Reactivity

  • Perfect integration with Solid's reactivity model
  • Zero unnecessary 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

Styled Components with Props

import { styled } from './silk.config'
import type { Component } from 'solid-js'

interface ButtonProps {
  variant?: 'primary' | 'secondary'
}

const StyledButton = styled('button', {
  px: 4,
  py: 2
})

export const Button: Component<ButtonProps> = (props) => {
  return (
    <StyledButton
      bg={props.variant === 'secondary' ? 'gray.200' : 'brand.500'}
      color={props.variant === 'secondary' ? 'gray.900' : 'white'}
    >
      {props.children}
    </StyledButton>
  )
}

Dynamic Styles

import { css } from './silk.config'
import { createSignal } from 'solid-js'

function Counter() {
  const [count, setCount] = createSignal(0)

  const containerStyle = css({
    display: 'flex',
    gap: 4,
    p: 4
  })

  return (
    <div class={containerStyle}>
      <button onClick={() => setCount(c => c - 1)}>-</button>
      <span>{count()}</span>
      <button onClick={() => setCount(c => c + 1)}>+</button>
    </div>
  )
}

Container Queries

const ResponsiveCard = styled('div', {
  containerType: 'inline-size',
  display: 'flex',
  flexDirection: 'column',

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

Composition

import { mergeStyles } from '@sylphx/silk-solid'

const baseButton = { px: 4, py: 2 }
const primaryButton = { bg: 'brand.500', color: 'white' }
const largeButton = { px: 6, py: 3 }

const Button = styled('button',
  mergeStyles(baseButton, primaryButton, largeButton)
)

Vite Setup

// vite.config.ts
import { defineConfig } from 'vite'
import solid from 'vite-plugin-solid'

export default defineConfig({
  plugins: [
    solid(),
    // Silk Vite plugin for CSS extraction
  ],
})

SolidStart Integration

// app.config.ts
import { defineConfig } from '@solidjs/start/config'

export default defineConfig({
  // Your SolidStart config
  // Silk works out of the box!
})

Performance Comparison

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

Solid's fine-grained reactivity + Silk's zero-runtime = Fastest possible styling solution.

Ecosystem

Documentation

Full documentation: GitHub Repository

License

MIT © SylphX Ltd