Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 11485e1

Browse files
committed
Adjust skeleton component background color and bump package version
This commit updates the background color of the skeleton component from `bg-neutral-200` to `bg-neutral-100` to improve visual consistency. Alongside this, the package version is incremented to 0.1.63 to reflect this change in the UI package.
1 parent 10ddf1a commit 11485e1

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

packages/ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @codefixlabs/ui
22

3+
## 0.1.63
4+
5+
### Patch Changes
6+
7+
- Change skeleton background color in tailwind configuration
8+
39
## 0.1.62
410

511
### Patch Changes

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/ui",
3-
"version": "0.1.62",
3+
"version": "0.1.63",
44
"license": "MIT",
55
"sideEffects": false,
66
"exports": {

packages/ui/src/react/skeleton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function Skeleton({
1313
<div
1414
className={twMerge(
1515
'before:absolute before:inset-0 before:-translate-x-full before:animate-[shimmer_2s_infinite] before:bg-gradient-to-r before:from-transparent before:via-white/60 before:to-transparent',
16-
'relative overflow-hidden rounded bg-neutral-200',
16+
'relative overflow-hidden rounded bg-neutral-100',
1717
className,
1818
)}
1919
{...props}

0 commit comments

Comments
 (0)