set non-transparent colors for light mode, fix fuzzy letters issue with ghost prompt

This commit is contained in:
Evan Simkowitz
2024-04-09 17:07:15 -07:00
parent a395043a1c
commit 1fe5d425da
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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);
+1 -1
View File
@@ -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}`}
</div>
</If>
<textarea