Skip to content

Commit

Permalink
[sparkle] - feature: bump version to 0.2.264 with color scheme updates
Browse files Browse the repository at this point in the history
 - Increment package version for a new release
 - Enhance color scheme configuration in Tailwind with expanded definitions
  • Loading branch information
Jules authored and Jules committed Oct 10, 2024
1 parent e4234b4 commit d35a7e9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions sparkle/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sparkle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dust-tt/sparkle",
"version": "0.2.263",
"version": "0.2.264",
"scripts": {
"build": "rm -rf dist && npm run tailwind && npm run build:esm && npm run build:cjs",
"tailwind": "tailwindcss -i ./src/styles/tailwind.css -o dist/sparkle.css",
Expand Down
20 changes: 16 additions & 4 deletions sparkle/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,10 @@ module.exports = {
"move-square": "move-square 3s ease-out infinite",
},
colors: {
separator: { DEFAULT: colors.slate[200], dark: colors.slate[800] },
separator: {
DEFAULT: colors.slate[200],
dark: colors.slate[800]
},
border: {
DEFAULT: colors.slate[100],
dark: colors.slate[900],
Expand All @@ -174,9 +177,18 @@ module.exports = {
DEFAULT: colors.slate[200],
dark: colors.slate[800],
},
background: { DEFAULT: colors.white, dark: colors.slate[950] },
foreground: { DEFAULT: colors.slate[950], dark: colors.white },
muted: { DEFAULT: colors.slate[50], dark: colors.slate[900] },
background: {
DEFAULT: colors.white,
dark: colors.slate[950]
},
foreground: {
DEFAULT: colors.slate[950],
dark: colors.white
},
muted: {
DEFAULT: colors.slate[50],
dark: colors.slate[900]
},
"muted-foreground": {
DEFAULT: colors.slate[500],
dark: colors.slate[500],
Expand Down

0 comments on commit d35a7e9

Please sign in to comment.