Files
SpeedScope/style.ts
Jamie Wong 66d1c2b3fc Switch to Source Code Pro, tweak outlines (#48)
This switches all text to be Source Code Pro instead of Courier for sharper rendering at size 10.

This also changes outline widths to be consistent visual widths on retina and non-retina screens.
2018-05-29 13:32:39 -07:00

20 lines
359 B
TypeScript

export enum FontFamily {
MONOSPACE = '"Source Code Pro", Courier, monospace',
}
export enum FontSize {
LABEL = 10,
TITLE = 12,
BIG_BUTTON = 36,
}
export enum Colors {
LIGHT_GRAY = '#C4C4C4',
MEDIUM_GRAY = '#BDBDBD',
GRAY = '#666666',
DARK_GRAY = '#222222',
BRIGHT_BLUE = '#56CCF2',
DARK_BLUE = '#2F80ED',
PALE_DARK_BLUE = '#8EB7ED',
}