diff options
Diffstat (limited to 'src/view/lib/themes.ts')
-rw-r--r-- | src/view/lib/themes.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/view/lib/themes.ts b/src/view/lib/themes.ts index 114d5cf99..45f55b116 100644 --- a/src/view/lib/themes.ts +++ b/src/view/lib/themes.ts @@ -1,3 +1,4 @@ +import {Platform} from 'react-native' import type {Theme} from './ThemeContext' import {colors} from './styles' @@ -136,6 +137,10 @@ export const defaultTheme: Theme = { fontSize: 14, fontWeight: '600', }, + mono1: { + fontSize: 14, + fontFamily: Platform.OS === 'android' ? 'monospace' : 'Courier New', + }, }, } |