[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",
"description": "Strolch WebComponent Debounced Input",
"version": "0.1.5",
"version": "0.1.6",
"authors": [
"Robert von Burg"
],

View File

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