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.
20 lines
359 B
TypeScript
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',
|
|
}
|