-
Notifications
You must be signed in to change notification settings - Fork 0
/
addons.html
22 lines (22 loc) · 879 Bytes
/
addons.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Addon Settings - TurboWarp</title>
<style>
body[splash-theme="dark"]:not(.tw-loaded) {
background: #111;
}
</style>
</head>
<body>
<script>
(function() {
try {var localTheme = localStorage.getItem('tw:theme');} catch (e) {}
if (localTheme ? localTheme === 'dark' : window.matchMedia('(prefers-color-scheme: dark)').matches) document.body.setAttribute('splash-theme', 'dark');
})();
</script>
<div id="app"></div>
<script src="js/vendors~addon-settings~credits~editor~embed~fullscreen~player.js"></script><script src="js/addon-settings~addons~editor~fullscreen~player.js"></script><script src="js/addon-settings.js"></script></body>
</html>