diff --git a/src/Input.module.css b/src/Input.module.css index 08ac6a3..234cf27 100644 --- a/src/Input.module.css +++ b/src/Input.module.css @@ -58,7 +58,7 @@ .inputField label { transition: font-size 0.25s ease-out 0.1s, color 0.25s ease-out 0.1s, top 0.25s ease-out 0.1s, background-color 0.25s ease-out 0.1s; - color: var(--textColor1); + color: var(--textColor3); background-color: transparent; font-size: 15px; position: absolute; diff --git a/src/index.css b/src/index.css index f2ac11b..55083b9 100644 --- a/src/index.css +++ b/src/index.css @@ -31,6 +31,7 @@ limitations under the License. --bgColor5: #8d97a5; --textColor1: #fff; --textColor2: #6f7882; + --textColor3: #8e99a4; --inputBorderColor: #394049; --inputBorderColorFocused: #0086e6; } diff --git a/src/main.jsx b/src/main.jsx index a639541..5db2324 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -33,6 +33,7 @@ if (import.meta.env.VITE_CUSTOM_THEME) { style.setProperty("--bgColor5", import.meta.env.VITE_BG_COLOR_5); style.setProperty("--textColor1", import.meta.env.VITE_TEXT_COLOR_1); style.setProperty("--textColor2", import.meta.env.VITE_TEXT_COLOR_2); + style.setProperty("--textColor4", import.meta.env.VITE_TEXT_COLOR_4); style.setProperty( "--inputBorderColor", import.meta.env.VITE_INPUT_BORDER_COLOR