import { darkColors, lightColors } from "../../theme/colors"; import { PancakeToggleTheme } from "./types"; export const light: PancakeToggleTheme = { handleBackground: lightColors.card, handleShadow: lightColors.textDisabled, }; export const dark: PancakeToggleTheme = { handleBackground: darkColors.card, handleShadow: darkColors.textDisabled, };