diff --git a/src/screens/OperationScreens/OpLoggingTab/components/QSOList.jsx b/src/screens/OperationScreens/OpLoggingTab/components/QSOList.jsx index 860dae091..8d245a336 100644 --- a/src/screens/OperationScreens/OpLoggingTab/components/QSOList.jsx +++ b/src/screens/OperationScreens/OpLoggingTab/components/QSOList.jsx @@ -362,15 +362,18 @@ function _prepareStyles (themeStyles, { componentWidth: width, safeArea, hasFreq }, freqMHz: { ...commonStyles, + ...themeStyles.text.numbers, fontWeight: '600', textAlign: 'right' }, freqKHz: { ...commonStyles, + ...themeStyles.text.numbers, textAlign: 'right' }, freqHz: { ...commonStyles, + ...themeStyles.text.numbers, textAlign: 'right', fontWeight: '400', fontSize: normalFontSize * 0.7 diff --git a/src/styles/globalStyles.js b/src/styles/globalStyles.js index f3e25c20e..b22cc2702 100644 --- a/src/styles/globalStyles.js +++ b/src/styles/globalStyles.js @@ -179,16 +179,17 @@ export const prepareGlobalStyles = ({ theme, colorScheme, width, height }) => { numbers: { fontVariant: ['tabular-nums'], fontFamily: 'Roboto Mono', - fontWeight: 'regular' + fontWeight: 'normal' }, callsign: { fontVariant: ['tabular-nums'], fontFamily: 'Roboto Mono', - fontWeight: 'regular' + fontWeight: 'normal' }, callsignBold: { fontVariant: ['tabular-nums'], - fontFamily: 'Roboto Mono Bold' + fontFamily: 'Roboto Mono', + fontWeight: 'bold' }, bold: { fontWeight: 'bold'