@carton-org/react-neumorphism
Version:
A React component library implementing the neumorphism design style
43 lines (42 loc) • 992 B
JavaScript
import { spacings as o } from "./units.js";
const d = {
backgroundColor: "#25272b",
lightShadow: "#34373c",
darkShadow: "#16171a",
activeBackgroundColor: "#ffffff",
hoverBackgroundColor: "#0c0c0c"
}, e = {
backgroundColor: "#f2f2f2",
lightShadow: "#ffffff",
darkShadow: "#d0d0d0",
activeBackgroundColor: "#25272b",
hoverBackgroundColor: "#ffffff"
}, f = {
distance: "5px",
blur: "10px"
}, a = {
fontFamily: "Inter, sans-serif",
fontColor: "#ffffff"
}, t = {
fontFamily: "Inter, sans-serif",
fontColor: "#25272b"
}, l = {
borderColor: "#353535",
borderRadius: o.sm,
borderWidth: "1px",
borderStyle: "solid"
}, s = {
borderColor: "#d6d6d6",
borderRadius: o.sm,
borderWidth: "1px",
borderStyle: "solid"
};
export {
l as defaultBorderDarkTheme,
s as defaultBorderLightTheme,
d as defaultDarkColorsTheme,
e as defaultLightColorsTheme,
f as defaultNeumorphismConfig,
a as defaultTypographyDarkTheme,
t as defaultTypographyLightTheme
};