[Fix] Set default strolch-wc-debounced-input input colors to non-white

This commit is contained in:
Robert von Burg 2022-08-08 16:01:02 +02:00
parent eb1c10511a
commit 1bd331dd3c
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "strolch-wc-debounced-input", "name": "strolch-wc-debounced-input",
"description": "Strolch WebComponent Debounced Input", "description": "Strolch WebComponent Debounced Input",
"version": "0.1.5", "version": "0.1.6",
"authors": [ "authors": [
"Robert von Burg" "Robert von Burg"
], ],

View File

@ -8,9 +8,9 @@
<!-- Style --> <!-- Style -->
<style is="custom-style"> <style is="custom-style">
:host { :host {
--focus-color: white; --focus-color: var(--primary-color);
--input-color: white; --input-color: var(--primary-text-color);
--regular-color: lightgrey; --regular-color: var(--secondary-text-color);
--disabled-color: darkgrey; --disabled-color: darkgrey;
display: block; display: block;