diff --git a/README.md b/README.md index cd164588..c91d4578 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ Open the app with the following **supported browsers** and many more. - Recording your Screen, Audio, or Video - Share any YouTube video in real-time to your participants - Full-Screen Mode on mouse click on the Video element +- Possibility to Change UI Themes - Possibility to protect your Host with username and password (default disabled) - Supports [REST API](app/api/README.md) (Application Programming Interface) diff --git a/public/js/Room.js b/public/js/Room.js index 26b0b962..2a479148 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -1561,12 +1561,6 @@ function setTheme(theme) { document.documentElement.style.setProperty('--msger-bg', 'radial-gradient(#666, #333)'); document.documentElement.style.setProperty('--wb-bg', 'radial-gradient(#797979, #000)'); break; - case 'green': - swalBackground = 'radial-gradient(#393, #000)'; - document.documentElement.style.setProperty('--body-bg', 'radial-gradient(#393, #000)'); - document.documentElement.style.setProperty('--msger-bg', 'radial-gradient(#393, #000)'); - document.documentElement.style.setProperty('--wb-bg', 'radial-gradient(#393, #000)'); - break; //... } }