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 shadow: shadow(theme),
10 cornerRadius: 6,
11 ...text(theme, "sans", "primary", { size: "xs" })
12 }
13}