diff --git a/packages/desktop-client/src/components/modals/EditField.js b/packages/desktop-client/src/components/modals/EditField.js
index 518a8c9ea5e..b4534005746 100644
--- a/packages/desktop-client/src/components/modals/EditField.js
+++ b/packages/desktop-client/src/components/modals/EditField.js
@@ -55,7 +55,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
let label, editor, minWidth;
let inputStyle = {
':focus': { boxShadow: 0 },
- ...(isNarrowWidth && { fontSize: 20 }),
+ ...(isNarrowWidth && { fontSize: 25 }),
};
let autocompleteProps = {
inputProps: { style: inputStyle },
@@ -101,7 +101,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
{...props}
style={{
...styles.largeText,
- color: theme.tableTextLight,
+ color: theme.tableHeaderText,
paddingTop: 10,
paddingBottom: 10,
}}
@@ -111,9 +111,12 @@ export default function EditField({ modalProps, name, onSubmit }) {
)}
@@ -147,7 +150,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
{...props}
style={{
...styles.largeText,
- color: theme.tableTextLight,
+ color: theme.tableHeaderText,
paddingTop: 10,
paddingBottom: 10,
}}
@@ -161,7 +164,8 @@ export default function EditField({ modalProps, name, onSubmit }) {
height: 12,
}}
style={{
- ...styles.mediumText,
+ ...styles.largeText,
+ fontWeight: 450,
paddingTop: 5,
paddingBottom: 5,
}}
@@ -171,9 +175,12 @@ export default function EditField({ modalProps, name, onSubmit }) {
)}
@@ -212,7 +219,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
{...props}
style={{
...styles.largeText,
- color: theme.tableTextLight,
+ color: theme.tableHeaderText,
paddingTop: 10,
paddingBottom: 10,
}}
@@ -222,9 +229,12 @@ export default function EditField({ modalProps, name, onSubmit }) {
)}