diff options
author | metamuffin <metamuffin@disroot.org> | 2023-02-27 18:19:50 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-02-27 18:19:50 +0100 |
commit | 0cc79a94471d4b12caad8e29dfbedba0149aae02 (patch) | |
tree | 57f72077d4d653560d1ae2ac4f2e83264c4fc0b2 /client-web/source/index.ts | |
parent | 14feff1f92149d18767e58db16f0d2eebc88b757 (diff) | |
download | keks-meet-0cc79a94471d4b12caad8e29dfbedba0149aae02.tar keks-meet-0cc79a94471d4b12caad8e29dfbedba0149aae02.tar.bz2 keks-meet-0cc79a94471d4b12caad8e29dfbedba0149aae02.tar.zst |
properly apply configured theme everywheere
Diffstat (limited to 'client-web/source/index.ts')
-rw-r--r-- | client-web/source/index.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts index 83f1dfc..c92ca2b 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -79,14 +79,6 @@ export async function main() { username: config.webrtc.turn_user, }] } - if (config.appearance) { - document.body.style.setProperty("--ac", config.appearance.accent) - document.body.style.setProperty("--ac-dark", config.appearance.accent_dark) - document.body.style.setProperty("--ac-light", config.appearance.accent_light) - document.body.style.setProperty("--bg", config.appearance.background) - document.body.style.setProperty("--bg-dark", config.appearance.background_dark) - - } r = new Room(conn, rtc_config) |