tooltip.ts

 1import Theme from "../themes/common/theme";
 2import { backgroundColor, border, shadow, text } from "./components";
 3
 4export default function tooltip(theme: Theme) {
 5  return {
 6    background: backgroundColor(theme, 500),
 7    border: border(theme, "primary"),
 8    padding: 6,
 9    margin: { top: 8, left: 8 },
10    shadow: shadow(theme),
11    cornerRadius: 6,
12    ...text(theme, "sans", "primary", { size: "xs" })
13  }
14}