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, "secondary"),
8 padding: { top: 4, bottom: 4, left: 8, right: 8 },
9 margin: { top: 6, left: 6 },
10 shadow: shadow(theme),
11 cornerRadius: 6,
12 ...text(theme, "sans", "secondary", { size: "xs", weight: "bold" })
13 }
14}