diff --git a/src/dispatch/static/dispatch/src/styles/index.scss b/src/dispatch/static/dispatch/src/styles/index.scss index 39de3e324c24..51ce157a4f6e 100644 --- a/src/dispatch/static/dispatch/src/styles/index.scss +++ b/src/dispatch/static/dispatch/src/styles/index.scss @@ -5,3 +5,21 @@ .v-card--variant-outlined { border-color: rgb(210, 210, 210); } + +.v-theme--light{ + .formkit-input { + --fk-color-input: rgb(0,0,0);; + } + .formkit-help { + --fk-color-help: rgb(0,0,0); + } +} + +.v-theme--dark{ + .formkit-input { + --fk-color-input: rgb(255,255,255);; + } + .formkit-help { + --fk-color-help: rgb(255,255,255);; + } +}