diff --git a/styles/src/styleTree/tooltip.ts b/styles/src/styleTree/tooltip.ts index 3fc7bd012b4b0725e55d2cb18f0e0b10dab62a3b..228d510ddd20166a0aa49f6e0dec97c2a5cf2345 100644 --- a/styles/src/styleTree/tooltip.ts +++ b/styles/src/styleTree/tooltip.ts @@ -4,11 +4,11 @@ import { backgroundColor, border, shadow, text } from "./components"; export default function tooltip(theme: Theme) { return { background: backgroundColor(theme, 500), - border: border(theme, "primary"), - padding: 6, - margin: { top: 8, left: 8 }, + border: border(theme, "secondary"), + padding: { top: 4, bottom: 4, left: 8, right: 8 }, + margin: { top: 6, left: 6 }, shadow: shadow(theme), cornerRadius: 6, - ...text(theme, "sans", "primary", { size: "xs" }) + ...text(theme, "sans", "secondary", { size: "xs", weight: "bold" }) } } \ No newline at end of file