update ghost text color (#671)

This commit is contained in:
Mike Sawka 2024-06-06 19:24:06 -07:00 committed by GitHub
parent 69d58ef525
commit 97deb2ef14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View File

@ -170,6 +170,7 @@
--cmdinput-button-bg-color: var(--tab-green);
--cmdinput-disabled-bg-color: var(--app-text-bg-disabled-color);
--cmdinput-history-bg-color: var(--app-bg-color);
--cmdinput-ghost-text-color: rgb(145, 150, 144);
/* screen view color */
--screen-view-text-caption-color: rgb(139, 145, 138);

View File

@ -50,6 +50,7 @@
--modal-header-bottom-border-color: rgba(0, 0, 0, 0.3);
/* cmd input */
--cmdinput-ghost-text-color: rgb(116, 116, 116);
/* scroll colors */
--scrollbar-background-color: var(--app-bg-color);

View File

@ -131,7 +131,7 @@
}
.textarea-ghost {
color: var(--app-text-secondary-color);
color: var(--cmdinput-ghost-text-color);
z-index: 1;
}