UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

16 lines (13 loc) 618 B
import { createTheme } from '../../helpers/create-theme.js'; const toastTheme = createTheme({ root: { base: "flex w-full max-w-xs items-center rounded-lg bg-white p-4 text-gray-500 shadow dark:bg-gray-800 dark:text-gray-400", closed: "opacity-0 ease-out" }, toggle: { base: "-m-1.5 ml-auto inline-flex h-8 w-8 rounded-lg bg-white p-1.5 text-gray-400 hover:bg-gray-100 hover:text-gray-900 focus:ring-2 focus:ring-gray-300 dark:bg-gray-800 dark:text-gray-500 dark:hover:bg-gray-700 dark:hover:text-white", icon: "h-5 w-5 shrink-0" } }); export { toastTheme }; //# sourceMappingURL=theme.js.map