feat: integrate Panda CSS with biome overrides and dependencies

This commit is contained in:
2026-02-02 17:45:10 -06:00
parent e343a1e252
commit c87ee5ea01
12 changed files with 518 additions and 18 deletions

34
panda.config.ts Normal file
View File

@@ -0,0 +1,34 @@
import { defineConfig } from '@pandacss/dev'
import srJuggernautPandaPreset from '@srjuggernaut-dev/srjuggernaut-panda-preset'
export default defineConfig({
presets: [
srJuggernautPandaPreset({
neutral: 'gray',
colorVariation: { dark: true, alpha: false, p3: false },
includeColors: ['teal', 'gray'],
semanticColors: { primary: 'teal' }
})
],
preflight: true,
include: ['./src/**/*.{ts,tsx,js,jsx,astro}'],
exclude: [],
globalCss: {
body: {
fontFamily: "'Roboto Variable', sans-serif",
backgroundColor: 'neutral.1',
color: 'neutral.12'
},
'*, *::before, *::after': {
margin: 0,
padding: 0,
boxSizing: 'border-box'
},
'h1, h2, h3, h4, h5, h6': {
fontWeight: ''
}
},
theme: {
extend: {}
},
outdir: 'styled-system'
})