Compare commits
2 Commits
e80d1cb5a9
...
d7fefddb94
| Author | SHA1 | Date | |
|---|---|---|---|
| d7fefddb94 | |||
| aa7000a2aa |
@@ -6,7 +6,7 @@
|
|||||||
"dist/**/*",
|
"dist/**/*",
|
||||||
"README.md"
|
"README.md"
|
||||||
],
|
],
|
||||||
"version": "0.0.16",
|
"version": "0.0.17",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepare": "ts-patch install -s && bun .husky/install.ts",
|
"prepare": "ts-patch install -s && bun .husky/install.ts",
|
||||||
"prepublishOnly": "bun run build",
|
"prepublishOnly": "bun run build",
|
||||||
@@ -18,8 +18,8 @@
|
|||||||
"@biomejs/biome": "2.2.6",
|
"@biomejs/biome": "2.2.6",
|
||||||
"@commitlint/cli": "^20.1.0",
|
"@commitlint/cli": "^20.1.0",
|
||||||
"@commitlint/config-conventional": "^20.0.0",
|
"@commitlint/config-conventional": "^20.0.0",
|
||||||
"@pandacss/dev": "^1.4.3",
|
"@pandacss/dev": "^1.8.1",
|
||||||
"@pandacss/types": "^1.4.3",
|
"@pandacss/types": "^1.8.1",
|
||||||
"@types/bun": "latest",
|
"@types/bun": "latest",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"lint-staged": "^16.1.5",
|
"lint-staged": "^16.1.5",
|
||||||
|
|||||||
28
src/index.ts
28
src/index.ts
@@ -24,13 +24,33 @@ export type ThemeConfig = {
|
|||||||
semanticColors?: Record<string, BrandColor>
|
semanticColors?: Record<string, BrandColor>
|
||||||
colorVariation?: ColorVariation
|
colorVariation?: ColorVariation
|
||||||
includeColors?: Color[]
|
includeColors?: Color[]
|
||||||
|
breakpoints?: Record<string, number>
|
||||||
|
containerNames?: string[]
|
||||||
|
containerSizes?: Record<string, number>
|
||||||
}
|
}
|
||||||
|
|
||||||
const defaultConfig: Required<ThemeConfig> = {
|
export const defaultConfig: Required<ThemeConfig> = {
|
||||||
neutral: 'slate',
|
neutral: 'slate',
|
||||||
colorVariation: { dark: false, p3: false, alpha: false },
|
colorVariation: { dark: false, p3: false, alpha: false },
|
||||||
semanticColors: { primary: 'teal' },
|
semanticColors: { primary: 'teal' },
|
||||||
includeColors: color
|
includeColors: color,
|
||||||
|
breakpoints: { sm: 576, md: 768, lg: 992, xl: 1200, '2xl': 1400 },
|
||||||
|
containerNames: ['sidebar', 'content', 'wrapper'],
|
||||||
|
containerSizes: {
|
||||||
|
'3xs': 200,
|
||||||
|
'2xs': 300,
|
||||||
|
xs: 400,
|
||||||
|
sm: 500,
|
||||||
|
md: 600,
|
||||||
|
lg: 700,
|
||||||
|
xl: 800,
|
||||||
|
'2xl': 900,
|
||||||
|
'3xl': 1000,
|
||||||
|
'4xl': 1100,
|
||||||
|
'5xl': 1200,
|
||||||
|
'6xl': 1300,
|
||||||
|
'7xl': 1400
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const srJuggernautPandaPreset = (config?: ThemeConfig) => {
|
const srJuggernautPandaPreset = (config?: ThemeConfig) => {
|
||||||
@@ -39,6 +59,8 @@ const srJuggernautPandaPreset = (config?: ThemeConfig) => {
|
|||||||
const neutral = generateNeutralColor(mergedConfig.neutral, mergedConfig.colorVariation)
|
const neutral = generateNeutralColor(mergedConfig.neutral, mergedConfig.colorVariation)
|
||||||
const semanticColors = generateSemanticColors(mergedConfig.semanticColors, mergedConfig.colorVariation)
|
const semanticColors = generateSemanticColors(mergedConfig.semanticColors, mergedConfig.colorVariation)
|
||||||
const semanticColorKeysArray = Object.keys(semanticColors)
|
const semanticColorKeysArray = Object.keys(semanticColors)
|
||||||
|
const breakpointEntries = Object.entries(mergedConfig.breakpoints)
|
||||||
|
const containerSizes = Object.entries(mergedConfig.containerSizes)
|
||||||
return definePreset({
|
return definePreset({
|
||||||
name: 'srjuggernaut-panda-preset',
|
name: 'srjuggernaut-panda-preset',
|
||||||
patterns: {
|
patterns: {
|
||||||
@@ -58,6 +80,8 @@ const srJuggernautPandaPreset = (config?: ThemeConfig) => {
|
|||||||
progressBar: progressBarRecipe({ semanticColorNames: semanticColorKeysArray }),
|
progressBar: progressBarRecipe({ semanticColorNames: semanticColorKeysArray }),
|
||||||
select: selectRecipe({ semanticColorNames: semanticColorKeysArray })
|
select: selectRecipe({ semanticColorNames: semanticColorKeysArray })
|
||||||
},
|
},
|
||||||
|
breakpoints: Object.fromEntries(breakpointEntries.map(([key, value]) => [key, `${value}px`])),
|
||||||
|
containerSizes: Object.fromEntries(containerSizes.map(([key, value]) => [key, `${value}px`])),
|
||||||
tokens: {
|
tokens: {
|
||||||
animations: {},
|
animations: {},
|
||||||
aspectRatios: {
|
aspectRatios: {
|
||||||
|
|||||||
Reference in New Issue
Block a user