From 58c452ea44fe0876394114aacfd4c64913d886af Mon Sep 17 00:00:00 2001 From: Robin Pham Date: Wed, 11 Mar 2026 16:15:04 -0700 Subject: [PATCH] Update linearGradients default color in README I was confused AF cause I was using the default value and got a different look from omitting the prop, found out internally that the value is different --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce43a9a..f79d155 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ export default function App() { | Prop | Type | Default | Description | | ----------------- | ----------------------------- | --------------------------------------------- | ------------------------------------------------------- | | `style` | `ViewStyle` or `ViewStyle[]` | `undefined` | Custom styles for the Shimmer container. | -| `linearGradients` | `string[]` | `['transparent', '#FFFFFF30', 'transparent']` | Array of colors for the linear gradient animation. | +| `linearGradients` | `string[]` | `['transparent', '#FFFFFFFF', 'transparent']` | Array of colors for the linear gradient animation. | | `easing` | `EasingFunction` (reanimated) | `Easing.linear` | Easing for shimmer time interpolation | | `speed` | `number` | `1` | Speed param for multiplying speed of individual shimmer | | `gradientStart` | `{ x: number; y: number }` | `{ x: 0, y: 0.5 }` | Start coordinates for the linear gradient. |