diff --git a/public/themes/light.css b/public/themes/light.css index 30a9194e..68aa518a 100644 --- a/public/themes/light.css +++ b/public/themes/light.css @@ -9,8 +9,8 @@ --app-accent-color: rgb(75, 166, 57); --app-accent-bg-color: rgba(75, 166, 57, 0.2); --app-text-color: rgb(0, 0, 0); - --app-text-primary-color: rgb(0, 0, 0, 0.9); - --app-text-secondary-color: rgb(0, 0, 0, 0.7); + --app-text-primary-color: rgb(23, 23, 23); + --app-text-secondary-color: rgb(76, 76, 76); --app-border-color: rgb(139 145 138); --app-panel-bg-color: rgb(224, 224, 224); --app-panel-bg-color-dev: rgb(224, 224, 224); diff --git a/src/app/workspace/cmdinput/textareainput.tsx b/src/app/workspace/cmdinput/textareainput.tsx index 40070181..caf5128f 100644 --- a/src/app/workspace/cmdinput/textareainput.tsx +++ b/src/app/workspace/cmdinput/textareainput.tsx @@ -660,7 +660,7 @@ class TextAreaInput extends React.Component<{ screen: Screen; onHeightChange: () className="textarea-ghost" style={{ height: computedInnerHeight, minHeight: computedInnerHeight, fontSize: termFontSize }} > - {`${curLine}${primaryAutocompleteSuggestion}`} + {`${"\xa0".repeat(curLine.length)}${primaryAutocompleteSuggestion}`}