export const lightShadowColor = 'rgba(0,0,0,0.04)' export const lightShadowColorStrong = 'rgba(0,0,0,0.085)' export const darkShadowColor = 'rgba(0,0,0,0.2)' export const darkShadowColorStrong = 'rgba(0,0,0,0.3)' export const shadows = { light: { shadowColor: lightShadowColorStrong, shadowColorHover: lightShadowColorStrong, shadowColorPress: lightShadowColor, shadowColorFocus: lightShadowColor, }, dark: { shadowColor: darkShadowColorStrong, shadowColorHover: darkShadowColorStrong, shadowColorPress: darkShadowColor, shadowColorFocus: darkShadowColor, }, }