mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
1615c6150a
Co-Authored-By: Nate Butler <1714999+iamnbutler@users.noreply.github.com>
38 lines
565 B
TypeScript
38 lines
565 B
TypeScript
export type Color = string;
|
|
|
|
export default {
|
|
fontFamily: {
|
|
sans: "Zed Sans",
|
|
mono: "Zed Mono",
|
|
},
|
|
fontSize: {
|
|
"3xs": {
|
|
value: "8",
|
|
type: "fontSizes",
|
|
},
|
|
"2xs": {
|
|
value: "10",
|
|
type: "fontSizes",
|
|
},
|
|
xs: {
|
|
value: "12",
|
|
type: "fontSizes",
|
|
},
|
|
sm: {
|
|
value: "14",
|
|
type: "fontSizes",
|
|
},
|
|
md: {
|
|
value: "16",
|
|
type: "fontSizes",
|
|
},
|
|
lg: {
|
|
value: "18",
|
|
type: "fontSizes",
|
|
},
|
|
xl: {
|
|
value: "20",
|
|
type: "fontSizes",
|
|
},
|
|
},
|
|
};
|