2022-04-14 23:04:32 +00:00
|
|
|
import Theme from "../themes/theme";
|
2022-04-19 06:48:35 +00:00
|
|
|
import { text, backgroundColor, border } from "./components";
|
2022-04-14 23:04:32 +00:00
|
|
|
|
|
|
|
export default function commandPalette(theme: Theme) {
|
|
|
|
return {
|
|
|
|
keystrokeSpacing: 8,
|
|
|
|
key: {
|
2022-04-20 15:54:57 +00:00
|
|
|
text: text(theme, "mono", "secondary", { size: "xs" }),
|
2022-04-19 06:34:45 +00:00
|
|
|
cornerRadius: 4,
|
|
|
|
background: backgroundColor(theme, "on300"),
|
|
|
|
border: border(theme, "secondary"),
|
2022-04-14 23:04:32 +00:00
|
|
|
padding: {
|
2022-04-19 06:48:35 +00:00
|
|
|
top: 2,
|
|
|
|
bottom: 2,
|
2022-04-19 06:34:45 +00:00
|
|
|
left: 8,
|
|
|
|
right: 8,
|
2022-04-14 23:04:32 +00:00
|
|
|
},
|
|
|
|
margin: {
|
2022-04-19 06:34:45 +00:00
|
|
|
left: 2
|
2022-04-14 23:04:32 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|