diff --git a/service.js b/service.js index 845a723..83e68b6 100644 --- a/service.js +++ b/service.js @@ -2786,11 +2786,14 @@ class BesPopup extends HTMLElement { .bes-close-btn svg { width: 100%; height: 100%; - fill: #333; } + :host{ + --bes-close-icon: #485362; + --hover-bg-clr: #dee3ed; + } .bes-close-btn:hover { - background: #dee3ed; - border-radius: 8px + background: var(--hover-bg-clr); + border-radius: 4px } :host(.show) .bes-popup-container { visibility: visible; @@ -2819,13 +2822,17 @@ class BesPopup extends HTMLElement { background-color: #111213; border: 1px solid #2e3036; } + :host{ + --bes-close-icon: #a4b5c7; + --hover-bg-clr:rgba(189, 189, 189, 0.28); + } }