From b84abd9c0a680bc48cb798fa4452b20b056bb34f Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Tue, 17 Dec 2024 21:28:41 -0800 Subject: [PATCH] Provide some dark mode colors --- src/form.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/form.css b/src/form.css index 82532e4..b835080 100644 --- a/src/form.css +++ b/src/form.css @@ -53,6 +53,10 @@ background-color: #f8f8f8; } +[data-bs-theme="dark"] .selected-profile { + background-color: #070707; +} + #submit-button { grid-column-start: 1; grid-column-end: 3; @@ -114,6 +118,14 @@ */ color: #ddd; } + +/* react-select styling */ +[data-bs-theme="dark"] + .react-select-item-container.react-select-item-menu-display.react-select-item-selected + .react-select-item-description { + color: #222222; +} + .react-select-item-container { padding: 4px; } @@ -121,3 +133,7 @@ .react-select-item-description { color: #999; } + +[data-bs-theme="dark"] .react-select-item-description { + color: #666666; +}