-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
2774 lines (2615 loc) · 108 KB
/
Copy pathindex.html
File metadata and controls
2774 lines (2615 loc) · 108 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<!-- ═══════════════════════════════════════════════════════════════════════════════
BASIC META & VERIFICATION
═══════════════════════════════════════════════════════════════════════════════ -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="google-site-verification"
content="xrFqm4zYAPEHRFkuFblD3N7PwmiMngvskCl9ARVp01E"
/>
<!-- Preload main CSS for performance -->
<link rel="stylesheet" href="css/style.css?v=4.3.0" />
<!-- ═══════════════════════════════════════════════════════════════════════════════
SEO META TAGS
═══════════════════════════════════════════════════════════════════════════════ -->
<title>Customodoro - Pomodoro & Reverse Pomodoro Timer</title>
<meta
name="description"
content="Free Pomodoro timer with Classic and Reverse Pomodoro (Flowmodoro) modes. Earn breaks from focus time, track streaks, and work offline."
/>
<meta
name="keywords"
content="customodoro, pomodoro timer, productivity app, focus timer, work timer, custom pomodoro, time management, study timer, break timer, productivity tracker, reverse pomodoro, customizable pomodoro"
/>
<meta name="author" content="YabuTech" />
<meta
name="robots"
content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1"
/>
<link rel="canonical" href="https://www.customodoro.app/" />
<!-- ═══════════════════════════════════════════════════════════════════════════════
TWITTER CARD (Must come before OpenGraph)
═══════════════════════════════════════════════════════════════════════════════ -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@customodoro" />
<meta name="twitter:creator" content="@customodoro" />
<meta
name="twitter:title"
content="Customodoro - Classic Pomodoro & Flowmodoro Timer"
/>
<meta
name="twitter:description"
content="🍅 Free Pomodoro and Reverse Pomodoro timer with Flowmodoro-style earned breaks, focus tracking, analytics, and offline PWA support."
/>
<meta
name="twitter:image"
content="https://www.customodoro.app/images/customodoro_card.png?v=2026-08-01"
/>
<meta
name="twitter:image:alt"
content="Customodoro - Customizable Pomodoro Timer for Maximum Productivity"
/>
<!-- ═══════════════════════════════════════════════════════════════════════════════
OPEN GRAPH (Social Media Sharing)
═══════════════════════════════════════════════════════════════════════════════ -->
<meta property="og:site_name" content="Customodoro" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.customodoro.app/" />
<meta
property="og:title"
content="Customodoro - Free Pomodoro & Reverse Pomodoro Timer"
/>
<meta
property="og:description"
content="Free Pomodoro and Reverse Pomodoro timer. Use Flowmodoro-style earned breaks, track sessions and streaks, and install the offline-ready PWA."
/>
<meta
property="og:image"
content="https://www.customodoro.app/images/customodoro_card.png?v=2026-08-01"
/>
<meta
property="og:image:secure_url"
content="https://www.customodoro.app/images/customodoro_card.png?v=2026-08-01"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="Customodoro Timer - Boost Your Productivity"
/>
<meta property="og:locale" content="en_US" />
<!-- ═══════════════════════════════════════════════════════════════════════════════
SCHEMA.ORG JSON-LD (SEO Structured Data)
═══════════════════════════════════════════════════════════════════════════════ -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Customodoro",
"alternateName": [
"Customodoro Timer",
"Reverse Pomodoro Timer",
"Flowmodoro App"
],
"url": "https://www.customodoro.app/",
"description": "Free customizable Pomodoro timer with Classic and Reverse Pomodoro (Flowmodoro) modes, focus tracking, streaks, and productivity analytics.",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript. Works offline via Service Worker.",
"image": "https://www.customodoro.app/images/customodoro_card.png?v=2026-08-01",
"screenshot": "https://www.customodoro.app/images/customodoro_card.png?v=2026-08-01",
"featureList": [
"Classic Pomodoro countdown timer",
"Reverse Pomodoro (Flowmodoro) stopwatch mode",
"Customizable work, short break, and long break intervals",
"Daily focus streaks and session tracking",
"Productivity analytics and contribution graph",
"Global leaderboard via Supabase",
"Ambient sound profiles and background music",
"Custom themes and background image upload",
"Offline support via Progressive Web App",
"Cross-device sync with free account"
],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"creator": {
"@type": "Person",
"name": "Brian Yabut",
"alternateName": "YabuTech",
"url": "https://yabutech.vercel.app"
},
"license": "https://opensource.org/licenses/MIT",
"isAccessibleForFree": true
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is Reverse Pomodoro Timer?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Reverse Pomodoro Timer is Customodoro's count-up focus mode. Instead of starting with a fixed countdown, you work freely and earn break time proportional to how long you worked. This style of timer is also commonly known as Flowmodoro."
}
},
{
"@type": "Question",
"name": "What is Flowmodoro?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Flowmodoro is the broader name for a focus technique where you work without a fixed countdown, then take a break based on your work duration. Customodoro teaches this through its Reverse Pomodoro Timer."
}
},
{
"@type": "Question",
"name": "Is Customodoro free?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Customodoro is completely free to use, requires no account to start, and is open source under the MIT license. An optional free account enables cross-device sync and leaderboard access."
}
},
{
"@type": "Question",
"name": "Does Customodoro work offline?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Customodoro is a Progressive Web App with a service worker that caches core assets. It can be installed on supported devices and runs offline after the first load."
}
},
{
"@type": "Question",
"name": "What is the difference between Classic and Reverse Pomodoro in Customodoro?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Classic mode uses a fixed countdown timer, with customizable work sessions plus short and long breaks. Reverse Pomodoro mode, also known as Flowmodoro, counts up while you work and calculates your break time proportionally based on how long you focused."
}
}
]
}
</script>
<!-- ═══════════════════════════════════════════════════════════════════════════════
PWA & MOBILE
═══════════════════════════════════════════════════════════════════════════════ -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="Customodoro" />
<link rel="manifest" href="manifest.json" />
<meta name="theme-color" content="#e53935" />
<!-- ═══════════════════════════════════════════════════════════════════════════════
FAVICONS
═══════════════════════════════════════════════════════════════════════════════ -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png?v=1.1"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png?v=1.1"
id="favicon"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png?v=1.1"
/>
<link rel="shortcut icon" href="favicon/favicon.ico?v=1.1" />
<!-- UPDATE! -->
<link rel="stylesheet" href="css/media-players.css?v=1.0.1" />
<link rel="stylesheet" href="css/features.css?v=1.0.7" />
<link rel="stylesheet" href="css/utilities.css?v=1.0.6" />
<link rel="stylesheet" href="css/site-shell.css?v=1.6.0" />
<!-- Supabase Client -->
<script src="https://unpkg.com/@supabase/supabase-js@2"></script>
<script>
// Function to load deferred CSS files
function loadDeferredCSS() {
const deferredStyles = ["theme-uploader", "burnup-tracker"];
deferredStyles.forEach((style) => {
const link = document.createElement("link");
link.rel = "stylesheet";
link.href = `css/${style}.css`;
document.head.appendChild(link);
});
}
// Load deferred styles when DOM is ready, with a slight delay to prioritize render
document.addEventListener("DOMContentLoaded", function () {
setTimeout(loadDeferredCSS, 100);
});
</script>
</head>
<body class="pomodoro-mode">
<script>
// Apply saved theme before the page renders to prevent flashing
(function () {
// FIX: Define savedTheme before using it
const savedTheme = localStorage.getItem("siteTheme") || "light";
document.body.classList.remove(
"theme-default",
"theme-dark",
"theme-light",
"theme-yourname",
"theme-custom",
);
if (savedTheme === "custom") {
const customBg = localStorage.getItem("customThemeBackground");
if (customBg) {
document.body.classList.add("theme-custom");
document.body.style.backgroundImage = `url(${customBg})`;
} else {
document.body.classList.add("theme-light");
}
} else {
document.body.classList.add("theme-" + savedTheme);
}
})();
</script>
<div class="container">
<header>
<h1 class="app-title">Customodoro Timer</h1>
<div class="header-top">
<!-- User Profile Display -->
<div class="user-profile" id="user-profile" style="display: none">
<div class="user-avatar">
<div class="user-avatar-icon">👤</div>
</div>
<div class="user-info">
<div class="user-name" id="header-user-name">User</div>
<div class="user-sync-status" id="header-sync-status">
<span class="sync-indicator" id="header-sync-indicator"
>✅</span
>
<span class="sync-text">Synced</span>
</div>
</div>
<div class="user-actions">
<button
class="user-action-btn"
id="header-sync-btn"
title="Open Sync Settings"
>
<svg
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M3 12A9 9 0 0 1 12 3a9.75 9.75 0 0 1 6.74 2.74L21 8"
/>
<path d="M21 3v5h-5" />
<path
d="M21 12a9 9 0 0 1-12 9 9.75 9.75 0 0 1-6.74-2.74L0 16"
/>
<path d="M3 16v5h5" />
</svg>
</button>
<button
class="user-action-btn"
id="header-logout-btn"
title="Sign Out"
>
<svg
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" />
<polyline points="16,17 21,12 16,7" />
<line x1="21" y1="12" x2="9" y2="12" />
</svg>
</button>
</div>
</div>
</div>
<div class="mode-tabs">
<div class="tab active" id="pomodoro-tab">Pomodoro</div>
<div class="tab" id="short-break-tab">Short Break</div>
<div class="tab" id="long-break-tab">Long Break</div>
</div>
<br />
<div class="switch-mode">
<a href="/reverse" class="switch-btn">Try Reverse Pomodoro ⏱️</a>
</div>
</header>
<div class="timer-container">
<div class="timer" id="timer">25:00</div>
<div class="timer-actions">
<button class="primary-btn" id="start-btn">START</button>
<button class="secondary-btn" id="reset-btn">RESET</button>
</div>
<div class="progress-container">
<div class="progress-bar" id="progress-bar"></div>
</div>
<br />
<div class="current-task" id="current-task" style="display: none">
Current Task: <span id="current-task-title"></span>
</div>
<!-- Burn-Up Time Tracker -->
<div class="burnup-tracker" id="burnup-tracker" style="display: none">
<div class="burnup-header">
<span class="burnup-title">Burn-Up Tracker</span>
</div>
<div class="burnup-progress-container">
<div class="burnup-progress-bar" id="burnup-progress-bar"></div>
</div>
<div class="burnup-stats">
<span class="burnup-spent"
>Spent: <span id="burnup-spent-time">00:00</span></span
>
<span class="burnup-divider">/</span>
<span class="burnup-planned"
>Est: <span id="burnup-planned-time">25:00</span></span
>
<span class="burnup-percentage" id="burnup-percentage">0%</span>
</div>
</div>
<div class="session-info">
<div class="session-count" id="session-dots">
<span class="session-dot"></span>
<span class="session-dot"></span>
<span class="session-dot"></span>
<span class="session-dot"></span>
</div>
<div class="session-text" id="session-text">#1</div>
</div>
</div>
<!-- STREAK! -->
<div
id="streak-display"
style="display: flex; justify-content: center; margin-bottom: 24px"
>
<div class="duo-streak-pill">
<span class="duo-flame">🔥</span>
<span class="duo-streak-num" id="duo-streak-num">0</span>
<span class="duo-streak-label">— day streak</span>
</div>
</div>
<div class="tasks-section">
<div class="tasks-header">
<div class="tasks-title">Tasks</div>
</div>
<div class="task-input-container">
<input
type="text"
class="task-input"
id="task-input"
placeholder="What are you working on?"
/>
</div>
<!-- Add description textarea below input -->
<div class="task-desc-container">
<textarea
id="task-description-input"
class="task-desc-input"
placeholder="Optional description... (Shift+Enter for new line, Enter to add task)"
maxlength="500"
rows="2"
></textarea>
</div>
<button id="add-task-btn" class="secondary-btn">Add Task</button>
<ul class="task-list" id="task-list">
<!-- Tasks will be added here -->
</ul>
<p class="settings-note">
🖱️
<strong
>You can now focus on a task by clicking it, and drag & drop tasks
to reorder!</strong
>
</p>
</div>
<div class="tasks-section">
<!-- PRODUCTIVITY GRAPH -->
<section id="contribution-graph" style="margin: 0 0 16px 0"></section>
<!-- STREAK!!! Streak Stats Card -->
<div class="streak-stats-card">
<div class="streak-stats-header">
<div class="streak-title-section">
<span class="streak-fire">🔥</span>
<span class="streak-title">My Stats :</span>
</div>
<button
class="leaderboard-btn"
id="leaderboard-btn"
title="View Global Leaderboard"
>
🏆 <span class="leaderboard-btn-text">Leaderboard</span>
</button>
</div>
<div class="streak-stats-content">
<div class="streak-stats-block">
<div class="streak-stats-value" id="streak-total">421</div>
<div class="streak-stats-label stats-responsive-text">
Total Focus Points
</div>
<div class="streak-stats-date" id="streak-total-date">
Jan 2, 2024 - Present
</div>
</div>
<div class="streak-stats-block streak-current">
<div class="streak-stats-circle">
<span class="streak-stats-value" id="streak-current">10</span>
</div>
<div
class="streak-stats-label streak-current-label stats-responsive-text-emphasis"
>
Current Streak
</div>
<div class="streak-stats-date" id="streak-current-date">
Jul 21 - Jul 30
</div>
</div>
<div class="streak-stats-block">
<div class="streak-stats-value" id="streak-longest">27</div>
<div class="streak-stats-label stats-responsive-text">
Longest Streak
</div>
<div class="streak-stats-date" id="streak-longest-date">
May 4 - May 30
</div>
</div>
</div>
</div>
<!-- User Stats Card -->
<div class="user-stats-card">
<div class="user-stats-header">
<div class="user-stats-title-section">
<span class="user-stats-title" id="user-stats-title"
>User's Stats</span
>
</div>
</div>
<div class="user-stats-content">
<div class="user-stats-row" data-stat="totalFocusTime">
<span class="user-stats-label">⭐ Total Focus Time:</span>
<span class="user-stats-value" id="user-total-focus-time"
>0 mins (0 hrs)</span
>
</div>
<div class="user-stats-row">
<span class="user-stats-label">📈 Completed Sessions:</span>
<span class="user-stats-value" id="user-total-sessions">0</span>
</div>
<div class="user-stats-row" data-stat="mostProductiveDay">
<span class="user-stats-label">🏆 Most Productive Day:</span>
<span class="user-stats-value" id="user-most-productive-day"
>0 hrs on Never</span
>
</div>
<div class="user-stats-row">
<span class="user-stats-label">🍅 Classic Pomodoros:</span>
<span class="user-stats-value" id="user-classic-pomodoros"
>0</span
>
</div>
<div class="user-stats-row">
<span class="user-stats-label">🔄 Reverse Pomodoros:</span>
<span class="user-stats-value" id="user-reverse-pomodoros"
>0</span
>
</div>
</div>
</div>
<!-- Most Used Pomodoro Card -->
<div
class="user-stats-card pomodoro-usage-card"
id="pomodoro-usage-card"
>
<div class="user-stats-header">
<div class="user-stats-title-section">
<span class="user-stats-title">Most Used Pomodoro</span>
</div>
</div>
<div class="user-stats-content">
<!-- Segmented horizontal bar (visual split between Classic and Reverse usage) -->
<div
class="pomodoro-segmented-container"
style="margin-top: 6px; margin-bottom: 12px"
>
<div
class="pomodoro-segmented-bar"
id="pomodoro-segmented-bar"
aria-hidden="true"
>
<div
class="pomodoro-segment classic"
id="pomodoro-segment-classic"
aria-hidden="true"
></div>
<div
class="pomodoro-segment reverse"
id="pomodoro-segment-reverse"
aria-hidden="true"
></div>
</div>
<div
id="pomodoro-segmented-desc"
class="sr-only"
aria-live="polite"
style="
position: absolute;
left: -9999px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
"
>
Most used pomodoro breakdown
</div>
</div>
<div class="pomodoro-usage-row">
<div class="pomodoro-usage-entry">
<span class="pomodoro-dot classic" aria-hidden="true"></span>
<span class="pomodoro-usage-label">Classic Pomodoro</span>
<span class="pomodoro-usage-value" id="pomodoro-classic-percent"
>0%</span
>
</div>
</div>
<div class="pomodoro-usage-row">
<div class="pomodoro-usage-entry">
<span class="pomodoro-dot reverse" aria-hidden="true"></span>
<span class="pomodoro-usage-label">Reverse Pomodoro</span>
<span class="pomodoro-usage-value" id="pomodoro-reverse-percent"
>0%</span
>
</div>
</div>
</div>
</div>
<!-- Achievements Card (matches other stats cards) -->
<div class="user-stats-card achievements-card">
<div class="user-stats-header">
<div class="user-stats-title-section">
<span class="user-stats-title">Achievements</span>
</div>
</div>
<div class="user-stats-content">
<div id="achievements-container"></div>
</div>
</div>
<!-- Data Recovery Notice -->
<div class="data-recovery-notice">
<div class="notice-icon">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10"></circle>
<line x1="12" y1="8" x2="12" y2="12"></line>
<line x1="12" y1="16" x2="12.01" y2="16"></line>
</svg>
</div>
<div class="notice-content">
<h3 class="notice-title">Missing Data?</h3>
<p class="notice-text">
If your <strong>productivity graph</strong>,
<strong>streaks</strong>, or
<strong>total focus points</strong> have disappeared after an
update, please
<a href="/feedback" class="notice-link">submit feedback</a> or
email me at
<a href="mailto:brianyabutech@gmail.com" class="notice-link"
><strong>brianyabutech@gmail.com</strong></a
>
so I can help you recover your data.
</p>
</div>
</div>
<!-- Troubleshooting Notice -->
<div class="data-recovery-notice">
<div class="notice-icon">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
></path>
<line x1="12" y1="9" x2="12" y2="13"></line>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
</div>
<div class="notice-content">
<h3 class="notice-title">Experiencing Bugs or Version Issues?</h3>
<p class="notice-text">
Try refreshing the page first. If you're using a web browser,
press <strong>Ctrl + Shift + R</strong> (or
<strong>Cmd + Shift + R</strong> on Mac) to perform a hard
refresh. If the issue persists, please
<a href="/feedback" class="notice-link">submit feedback</a> or
email me at
<a href="mailto:brianyabutech@gmail.com" class="notice-link"
><strong>brianyabutech@gmail.com</strong></a
>.
</p>
</div>
</div>
</div>
<div class="page-outro">
<div class="page-outro-inner">
<section
class="pomodoro-preview"
aria-label="Introduction to Pomodoro Technique"
>
<div class="preview-content">
<h2 class="article-title">📚 What is the Pomodoro Technique?</h2>
<p class="article-preview">
Think in tomatoes, not hours. The Pomodoro Technique is a
time management method that breaks your workday into focused
25-minute sessions, followed by refreshing breaks. Created by
<b>Francesco Cirillo</b>, this approach helps many people structure
focus time and recovery time.
</p>
<div class="preview-features">
<span class="feature-tag">🧠 Enhanced Mental Clarity</span>
<span class="feature-tag">⚡ 25-Minute Focus Session</span>
<span class="feature-tag">🎯 Focus Session Tracking</span>
<span class="feature-tag">📚 Master Time Management</span>
</div>
<a href="/pomodoro" class="learn-more-btn">
Learn More About the Pomodoro Technique
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</a>
</div>
</section>
<section class="seo-content" aria-label="About Customodoro">
<div class="seo-content-inner">
<div class="seo-content-intro">
<span class="seo-content-eyebrow">Focus your way</span>
<h2>What is Customodoro?</h2>
<p>
A free, customizable Pomodoro timer with Classic countdowns and
Reverse Pomodoro (Flowmodoro) sessions. Start instantly, shape
your focus routine, and keep your progress with or without an
account.
</p>
</div>
<details class="seo-content-details">
<summary>
<span>Explore features and common questions</span>
<span class="seo-summary-icon" aria-hidden="true"></span>
</summary>
<div class="seo-content-expanded">
<div class="seo-content-column">
<h3>Two ways to focus</h3>
<p>
Classic Pomodoro counts down from a fixed interval. Reverse
Pomodoro is a count-up focus mode that lets you work freely,
then calculates a break from how long you worked.
</p>
<h3>Key features</h3>
<ul class="seo-feature-list">
<li>Customizable intervals, sounds, and themes</li>
<li>Daily focus streaks and productivity insights</li>
<li>Achievements and a global leaderboard</li>
<li>Installable PWA with offline timer access</li>
<li>Optional cross-device account sync</li>
</ul>
</div>
<div class="seo-content-column">
<h3>Frequently asked questions</h3>
<dl class="seo-faq-list">
<dt>Is Customodoro free?</dt>
<dd>
Yes. No account is required to start, and Customodoro is
open source under the MIT license.
</dd>
<dt>What is Reverse Pomodoro?</dt>
<dd>
Also called Flowmodoro, it counts up while you focus and
calculates your break from how long you worked.
</dd>
<dt>Does it work offline?</dt>
<dd>
Yes. Install Customodoro as a PWA and the timer can run
offline after the first successful load.
</dd>
</dl>
</div>
</div>
<div class="seo-content-actions">
<a href="/reverse">Try Reverse Pomodoro</a>
<a href="/pomodoro">Learn the Pomodoro Technique</a>
</div>
</details>
</div>
</section>
</div>
<footer class="footer" role="contentinfo" aria-label="Customodoro footer">
<div class="footer-inner">
<div class="footer-top">
<a class="footer-brand" href="/">
<img class="footer-brand-mark" src="favicon/android-chrome-192x192.png" width="28" height="28" alt="" decoding="async" />
<span class="footer-brand-name">Customodoro</span>
</a>
<nav class="footer-nav" aria-label="Site links">
<a href="/">Home</a>
<a href="/reverse">Reverse</a>
<a href="/pomodoro">Guide</a>
<a href="#about" id="about-link-footer">About</a>
<a href="/feedback">Feedback</a>
<a href="/privacy">Privacy</a>
<a href="/terms">Terms</a>
</nav>
</div>
<div class="footer-bottom">
<p class="footer-copy">© <span class="copyright-year">2026</span> <a href="https://yabutech.vercel.app" target="_blank" rel="noopener noreferrer">YabuTech</a> · Customodoro v3.7.12</p>
<p class="footer-meta">
<a href="https://www.linkedin.com/in/brian-yabut/" target="_blank" rel="noopener noreferrer">Handcrafted by Brian Yabut</a>
<a href="mailto:brianyabutech@gmail.com">Contact</a>
<a href="https://github.com/yaaabs/customodoro" target="_blank" rel="noopener noreferrer">MIT License</a>
</p>
</div>
</div>
</footer>
</div>
</div>
<!-- Fullscreen Button -->
<button class="fullscreen-btn" id="fullscreen-btn" style="display: none">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"
class="enter-fullscreen-icon"
></path>
<path
d="M8 15H5v3M19 15h3v3M19 9h3V6M8 9H5V6"
class="exit-fullscreen-icon"
style="display: none"
></path>
</svg>
</button>
<!-- Focus Mode Button -->
<button
class="focus-mode-btn"
id="focus-mode-btn"
title="Focus Mode (Alt+F)"
style="display: none"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10"></circle>
<circle cx="12" cy="12" r="4"></circle>
<line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line>
</svg>
</button>
<!-- Settings Button -->
<button class="settings-btn" id="settings-btn" style="display: none">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="3"></circle>
<path
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"
></path>
</svg>
</button>
<!-- Settings Modal -->
<div class="settings-modal" id="settings-modal">
<div class="settings-content">
<!-- Add sidebar navigation -->
<div class="settings-sidebar">
<div class="settings-nav-item active" data-section="timer">Timer</div>
<div class="settings-nav-item" data-section="sound">Sound</div>
<div class="settings-nav-item" data-section="auto">Auto Start</div>
<div class="settings-nav-item" data-section="productivity">
Productivity <span class="bug-tag">BUG</span>
</div>
<div class="settings-nav-item" data-section="bgm">
Music <span class="beta-tag">BETA</span>
</div>
<div class="settings-nav-item" data-section="theme">
Theme <span class="new-tag">NEW</span>
</div>
<div class="settings-nav-item" data-section="sync">
Sync Data <span class="new-tag">NEW</span>
</div>
</div>
<div class="settings-main">
<div class="settings-header">
<h2 class="settings-title">Settings</h2>
<button class="settings-close" id="settings-close">×</button>
</div>
<div class="settings-body">
<!-- Timer Settings Section -->
<div class="settings-section active" id="timer-section">
<h3 class="settings-section-title">Timer Settings</h3>
<div class="settings-row">
<div class="settings-label">Pomodoro Length</div>
<div class="time-input-group">
<button class="time-btn" id="pomodoro-minus-btn">-</button>
<input
type="number"
class="time-input"
id="pomodoro-time"
value="25"
min="1"
max="999"
/>
<button class="time-btn" id="pomodoro-plus-btn">+</button>
</div>
</div>
<div class="settings-row">
<div class="settings-label">Short Break Length</div>
<div class="time-input-group">
<button class="time-btn" id="short-break-minus-btn">-</button>
<input
type="number"
class="time-input"
id="short-break-time"
value="5"
min="1"
max="999"
/>
<button class="time-btn" id="short-break-plus-btn">+</button>
</div>
</div>
<div class="settings-row">
<div class="settings-label">Long Break Length</div>
<div class="time-input-group">
<button class="time-btn" id="long-break-minus-btn">-</button>
<input
type="number"
class="time-input"
id="long-break-time"
value="15"
min="5"
max="999"
/>
<button class="time-btn" id="long-break-plus-btn">+</button>
</div>
</div>
<div class="settings-row">
<div class="settings-label">Sessions until Long Break</div>
<div class="time-input-group">
<button class="time-btn" id="sessions-minus-btn">-</button>
<input
type="number"
class="time-input"
id="sessions-count"
value="4"
min="1"
max="999"
/>
<button class="time-btn" id="sessions-plus-btn">+</button>
</div>
</div>
</div>
<!-- Sound Settings Section -->
<div class="settings-section" id="sound-section">
<h3 class="settings-section-title">Sound Settings</h3>