diff --git a/example/storybook-nativewind/src/components/Input/Input.tsx b/example/storybook-nativewind/src/components/Input/Input.tsx index 5065abbc1e..af86797b8c 100644 --- a/example/storybook-nativewind/src/components/Input/Input.tsx +++ b/example/storybook-nativewind/src/components/Input/Input.tsx @@ -13,7 +13,6 @@ const InputBasic = ({ ...props }: any) => { }} value={value} placeholder="Enter Text here" - className="text-error-500 bg-secondary-300" /> diff --git a/example/storybook-nativewind/src/core-components/nativewind/gluestack-ui-provider/config.ts b/example/storybook-nativewind/src/core-components/nativewind/gluestack-ui-provider/config.ts index 8a2d5c18d1..1c3914ac17 100644 --- a/example/storybook-nativewind/src/core-components/nativewind/gluestack-ui-provider/config.ts +++ b/example/storybook-nativewind/src/core-components/nativewind/gluestack-ui-provider/config.ts @@ -147,12 +147,8 @@ export const config = { '--color-background-success': '#EDFCF2', '--color-background-muted': '#F7F8F7', '--color-background-info': '#EBF8FE', - - '--color-shadow': '0px 2px 10px 0px #2626261A', }), dark: vars({ - '--color-shadow': 'none', - '--color-primary-0': '#828282', '--color-primary-50': '#949494', '--color-primary-100': '#9E9E9E', diff --git a/example/storybook-nativewind/src/core-components/nativewind/menu/index.tsx b/example/storybook-nativewind/src/core-components/nativewind/menu/index.tsx index 814a512f13..666da9db73 100644 --- a/example/storybook-nativewind/src/core-components/nativewind/menu/index.tsx +++ b/example/storybook-nativewind/src/core-components/nativewind/menu/index.tsx @@ -8,7 +8,7 @@ import { Motion, AnimatePresence } from '@legendapp/motion'; import type { VariantProps } from '@gluestack-ui/nativewind-utils'; const menuStyle = tva({ - base: 'rounded bg-background-0 overflow-hidden border border-outline-200 shadow-md p-1', + base: 'rounded bg-background-0 overflow-hidden border border-outline-200 p-1', }); const menuItemStyle = tva({ diff --git a/example/storybook-nativewind/tailwind.config.js b/example/storybook-nativewind/tailwind.config.js index 6cbb212c17..12634f9813 100644 --- a/example/storybook-nativewind/tailwind.config.js +++ b/example/storybook-nativewind/tailwind.config.js @@ -185,9 +185,6 @@ module.exports = { fontSize: { '2xs': '10px', }, - boxShadow: { - md: 'var(--color-shadow)', - }, }, plugins: [], },