-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapture-dark.html
More file actions
46 lines (45 loc) · 1.04 KB
/
Copy pathcapture-dark.html
File metadata and controls
46 lines (45 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Focus Flow Capture Dark</title>
<script>
localStorage.setItem(
'focus-flow/state/v1',
JSON.stringify({
preferences: {
language: 'en',
presetId: '90-15',
sessionCount: 2,
sessionHours: 4,
accountingMode: 'full-session',
volume: 0.55,
soundTheme: 'glass',
themeMode: 'dark',
},
}),
);
</script>
<style>
*,
*::before,
*::after {
animation: none !important;
transition: none !important;
}
.topbar,
.hero-panel,
.planner-panel,
.session-list-panel,
.settings-sheet {
opacity: 1 !important;
transform: none !important;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>