zed/styles/src/common.ts

51 lines
799 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 }
2022-06-24 22:02:18 +00:00
export const fontFamilies = {
sans: "Zed Sans",
mono: "Zed Mono",
}
2022-06-24 22:02:18 +00:00
export const fontSizes = {
"3xs": 8,
"2xs": 10,
xs: 12,
sm: 14,
md: 16,
lg: 18,
xl: 20,
}
2022-06-24 22:02:18 +00:00
export type FontWeight =
| "thin"
| "extra_light"
| "light"
| "normal"
| "medium"
| "semibold"
| "bold"
| "extra_bold"
| "black"
2022-06-24 22:02:18 +00:00
export const fontWeights: { [key: string]: FontWeight } = {
thin: "thin",
extra_light: "extra_light",
light: "light",
normal: "normal",
medium: "medium",
semibold: "semibold",
bold: "bold",
extra_bold: "extra_bold",
black: "black",
}
2022-06-24 22:02:18 +00:00
export const sizes = {
px: 1,
xs: 2,
sm: 4,
md: 6,
lg: 8,
xl: 12,
}