zed/styles/src/common.ts

33 lines
486 B
TypeScript
Raw Normal View History

2023-06-07 15:09:24 +00:00
import chroma from "chroma-js"
export * from "./theme"
2023-06-07 15:09:24 +00:00
export { chroma }
2023-06-29 05:48:40 +00:00
export const font_families = {
sans: "Zed Sans",
mono: "Zed Mono",
}
2022-06-24 22:02:18 +00:00
2023-06-29 05:48:40 +00:00
export const font_sizes = {
"2xs": 10,
xs: 12,
sm: 14,
md: 16,
2023-06-29 15:41:51 +00:00
lg: 18,
}
2022-06-24 22:02:18 +00:00
2023-06-29 15:41:51 +00:00
export type FontWeight = "normal" | "bold"
2023-06-29 05:48:40 +00:00
export const font_weights: { [key: string]: FontWeight } = {
normal: "normal",
bold: "bold",
}
2022-06-24 22:02:18 +00:00
export const sizes = {
px: 1,
xs: 2,
sm: 4,
md: 6,
lg: 8,
xl: 12,
}