No description
  • TypeScript 100%
Find a file
2026-06-11 19:57:02 -06:00
.husky chore: initial commit 2025-08-31 19:43:26 -06:00
src feat: add focus and focus-visible pseudo classes and slider focus ring 2026-06-11 19:57:02 -06:00
.gitignore chore: initial commit 2025-08-31 19:43:26 -06:00
biome.json chore: update dependencies 2026-04-14 12:01:56 -06:00
bun.lock chore(deps): upgrade deps, move @radix-ui/colors to direct dependency 2026-05-28 12:42:55 -06:00
bunfig.toml feat: configure Bun for private registry and rename package 2026-04-14 11:54:58 -06:00
commitlint.config.ts chore: initial commit 2025-08-31 19:43:26 -06:00
lint-staged.config.ts chore: initial commit 2025-08-31 19:43:26 -06:00
package.json feat: add focus and focus-visible pseudo classes and slider focus ring 2026-06-11 19:57:02 -06:00
README.md docs: add comprehensive README with installation and usage guide 2026-04-14 16:55:36 -06:00
tsconfig.json chore: update dependencies 2026-04-14 12:01:56 -06:00

srjuggernaut-panda-preset

A preset for Panda CSS

Usage

  1. Install Panda CSS

  2. Set up the @srjuggernaut-dev registry

with node add the following to your .npmrc

@srjuggernaut-dev:registry=https://git.srjuggernaut.dev/api/packages/SrJuggernaut/npm/

with bun add the following to your bunfig.toml

[install.scopes]
"@srjuggernaut-dev" = "https://git.srjuggernaut.dev/api/packages/SrJuggernaut/npm/"
  1. Install the preset

with node:

npm install @srjuggernaut-dev/panda-preset

with bun:

bun add @srjuggernaut-dev/panda-preset
  1. Add the preset to your panda.config.{js,ts}
import { defineConfig } from '@pandacss/dev'
import srJuggernautPandaPreset from '@srjuggernaut-dev/panda-preset'

export default defineConfig({
  presets: [srJuggernautPandaPreset()],
})