-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreverse.html
More file actions
2743 lines (2586 loc) · 107 KB
/
Copy pathreverse.html
File metadata and controls
2743 lines (2586 loc) · 107 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"
/>
<link rel="stylesheet" href="css/style.css?v=4.3.0" />
<!-- ═══════════════════════════════════════════════════════════════════════════════
SEO META TAGS
═══════════════════════════════════════════════════════════════════════════════ -->
<title>Reverse Pomodoro Timer - Flowmodoro Mode | Customodoro</title>
<meta
name="description"
content="Customodoro's Reverse Pomodoro Timer, also known as Flowmodoro. Work freely, count up, and earn break time from your focus duration. Free PWA."
/>
<meta
name="keywords"
content="reverse pomodoro, reverse pomodoro timer, reverse timer, flowmodoro, flowmodoro timer, customodoro reverse mode, count up pomodoro, earned break timer, alternative pomodoro, productivity timer"
/>
<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/reverse" />
<!-- ═══════════════════════════════════════════════════════════════════════════════
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="Reverse Pomodoro Timer - Flowmodoro Mode"
/>
<meta
name="twitter:description"
content="🔄 Customodoro's Reverse Pomodoro Timer, also known as Flowmodoro. Count up while you focus and earn break time."
/>
<meta
name="twitter:image"
content="https://www.customodoro.app/images/customodoro_card.png?v=2026-08-01"
/>
<meta
name="twitter:image:alt"
content="Reverse Pomodoro Timer - Overcome Procrastination with Customodoro"
/>
<!-- ═══════════════════════════════════════════════════════════════════════════════
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/reverse" />
<meta
property="og:title"
content="Reverse Pomodoro Timer - Flowmodoro Mode | Customodoro"
/>
<meta
property="og:description"
content="Use Customodoro's Reverse Pomodoro Timer, also known as Flowmodoro, to count up while you focus and earn break time."
/>
<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="Reverse Pomodoro Timer - Flowmodoro Mode by Customodoro"
/>
<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 Reverse Pomodoro Timer - Flowmodoro Mode",
"url": "https://www.customodoro.app/reverse",
"description": "Reverse Pomodoro Timer, also known as Flowmodoro, that lets you work freely and earn break time proportional to how long you focused. Free PWA by YabuTech.",
"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",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript. Works offline via Service Worker.",
"featureList": [
"Reverse Pomodoro count-up focus timer",
"Flowmodoro earned break calculation",
"Standard and Dynamic Reverse Pomodoro sub-modes",
"Focus session tracking",
"Daily streaks and productivity analytics",
"Offline support via Progressive Web App"
],
"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 based on how long you focused. This technique is also commonly known as Flowmodoro."
}
},
{
"@type": "Question",
"name": "Is Reverse Pomodoro the same as Flowmodoro?",
"acceptedAnswer": {
"@type": "Answer",
"text": "They describe the same style of focus timer: work first with a count-up timer, then earn a break from your focus duration. Customodoro calls this feature Reverse Pomodoro Timer while also identifying it as Flowmodoro so people can recognize the global term."
}
}
]
}
</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="reverse-mode">
<script>
// Apply saved theme before the page renders to prevent flashing
(function () {
const savedTheme = localStorage.getItem("siteTheme") || "light";
// Only run if document.body is available
if (document.body) {
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 - Reverse 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="reverse-tab">Reverse Pomodoro</div>
<div class="tab" id="break-tab">Break Accumulated</div>
</div>
<br />
<div class="switch-mode">
<a href="./" class="switch-btn">Switch to Classic Pomodoro ⏱️</a>
</div>
</header>
<div class="timer-container">
<div class="timer" id="timer">00:00</div>
<div class="max-time">Current Max Time: 01:00:00</div>
<div class="timer-actions">
<button class="primary-btn" id="start-btn">START</button>
<button class="primary-btn" id="pause-btn" style="display: none">
PAUSE
</button>
<button class="primary-btn" id="resume-btn" style="display: none">
RESUME
</button>
<button class="primary-btn" id="stop-btn" style="display: none">
STOP
</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">01:00:00</span></span
>
<span class="burnup-percentage" id="burnup-percentage">0%</span>
</div>
<!-- burnup-tracker content ends (Most Used Pomodoro placed later under User's Stats) -->
</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="info-section">
<div class="info-box">
<h3>How it works?</h3>
<p>
Work for up to 1 hour. The longer you work, the longer break you
earn:
</p>
<ul id="info-break-tiers">
<li>5-20 mins = 2 min break</li>
<li>21-30 mins = 5 min break</li>
<li>31-45 mins = 10 min break</li>
<li>46-55 mins = 15 min break</li>
<li>56-60 mins = 30 min break</li>
</ul>
<p class="settings-note">
💡 <strong>Pro tip:</strong> You can customize all timer settings,
including max work time and break durations, by clicking the
settings icon in the bottom right corner!
</p>
</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>
<!-- Achievements Card -->
<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>
<!-- 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>
<!-- 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 Reverse Pomodoro Timer">
<div class="seo-content-inner">
<div class="seo-content-intro">
<span class="seo-content-eyebrow">Follow your flow</span>
<h2>Reverse Pomodoro Timer</h2>
<p>
Start focusing without committing to a fixed countdown. The timer
counts up while you work, then turns your focus time into an
earned break when you are ready to stop.
</p>
</div>
<details class="seo-content-details">
<summary>
<span>How Reverse Pomodoro works</span>
<span class="seo-summary-icon" aria-hidden="true"></span>
</summary>
<div class="seo-content-expanded">
<div class="seo-content-column">
<h3>Reverse Pomodoro and Flowmodoro</h3>
<p>
Reverse Pomodoro is also commonly called Flowmodoro. Instead
of choosing a session length first, you protect your natural
flow state and take a proportional break afterward.
</p>
<h3>When it works well</h3>
<ul class="seo-feature-list">
<li>A fixed 25-minute countdown feels too rigid</li>
<li>You want to protect a flow state once it starts</li>
<li>You prefer breaks based on actual focus time</li>
<li>You want a gentler way to begin difficult tasks</li>
</ul>
</div>
<div class="seo-content-column">
<h3>Frequently asked questions</h3>
<dl class="seo-faq-list">
<dt>What is Reverse Pomodoro?</dt>
<dd>
It is Customodoro's count-up focus mode. Work freely, then
earn break time based on how long you focused.
</dd>
<dt>Is it the same as Flowmodoro?</dt>
<dd>
Yes. Both names describe working with a count-up timer
before taking a break based on your focus duration.
</dd>
</dl>
</div>
</div>
<div class="seo-content-actions">
<a href="/">Use Classic 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">
Reverse 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">
<!-- Reverse Timer Settings Section -->
<div class="settings-section active" id="timer-section">
<h3 class="settings-section-title">Reverse Timer Settings</h3>
<div class="settings-row">
<div class="settings-label">Break Logic Mode</div>
<div class="select-wrapper">
<select class="theme-selector" id="break-logic-mode-selector">
<option value="default">Standard 1hr (Default)</option>
<option value="dynamic">Custom Timer (Dynamic)</option>
</select>
</div>
</div>
<div class="settings-row">
<div class="settings-label">Max Work Time (minutes)</div>
<div class="time-input-group">
<button class="time-btn" id="max-time-minus-btn">-</button>
<input
type="number"
class="time-input"
id="max-time"
value="60"
min="15"
max="360"
/>
<button class="time-btn" id="max-time-plus-btn">+</button>
</div>
</div>
<div class="settings-row">
<div class="settings-label" id="break1-label">
Break Time (5-20 mins work)
</div>
<div class="time-input-group">
<button class="time-btn" id="break1-minus-btn">-</button>
<input
type="number"
class="time-input"
id="break1-time"
value="2"
min="1"
max="360"
/>
<button class="time-btn" id="break1-plus-btn">+</button>
</div>
</div>
<div class="settings-row">
<div class="settings-label" id="break2-label">
Break Time (21-30 mins work)
</div>
<div class="time-input-group">
<button class="time-btn" id="break2-minus-btn">-</button>
<input
type="number"
class="time-input"
id="break2-time"
value="5"
min="2"
max="360"
/>
<button class="time-btn" id="break2-plus-btn">+</button>
</div>
</div>
<div class="settings-row">
<div class="settings-label" id="break3-label">
Break Time (31-45 mins work)
</div>
<div class="time-input-group">
<button class="time-btn" id="break3-minus-btn">-</button>
<input
type="number"
class="time-input"
id="break3-time"
value="10"
min="5"
max="360"
/>
<button class="time-btn" id="break3-plus-btn">+</button>
</div>
</div>
<div class="settings-row">
<div class="settings-label" id="break4-label">
Break Time (46-55 mins work)
</div>
<div class="time-input-group">
<button class="time-btn" id="break4-minus-btn">-</button>
<input
type="number"