mirror of
https://github.com/jlfwong/speedscope.git
synced 2024-11-27 01:53:17 +03:00
14 lines
191 B
TypeScript
14 lines
191 B
TypeScript
|
export enum FontFamily {
|
||
|
MONOSPACE = "Courier, monospace"
|
||
|
}
|
||
|
|
||
|
export enum FontSize {
|
||
|
LABEL = 10,
|
||
|
TITLE = 12
|
||
|
}
|
||
|
|
||
|
export enum Colors {
|
||
|
MEDIUM_GRAY = "#BDBDBD",
|
||
|
LIGHT_GRAY = "#C4C4C4"
|
||
|
}
|