|
10 | 10 | /* PipBoy Colors - Green digital on black */ |
11 | 11 | :root[data-timer-theme="pipboy"] { |
12 | 12 | --focus-color: #00ff41; |
13 | | - --break-color: #ff8c00; /* Orange for break */ |
14 | | - --long-break-color: #0080ff; /* Blue for long break */ |
| 13 | + --break-color: #ff8c00; |
| 14 | + /* Orange for break */ |
| 15 | + --long-break-color: #0080ff; |
| 16 | + /* Blue for long break */ |
15 | 17 |
|
16 | 18 | /* Background Colors - Deep black with tints */ |
17 | 19 | --focus-bg: #0d1117; |
18 | 20 | /* PipBoy Black */ |
19 | | - --break-bg: #1a0a00; /* Dark orange-tinted background */ |
| 21 | + --break-bg: #1a0a00; |
| 22 | + /* Dark orange-tinted background */ |
20 | 23 | /* Black with orange tint */ |
21 | | - --long-break-bg: #001a2d; /* Dark blue-tinted background */ |
| 24 | + --long-break-bg: #001a2d; |
| 25 | + /* Dark blue-tinted background */ |
22 | 26 | /* Blue-ish black */ |
23 | 27 |
|
24 | 28 | /* Timer Text Colors - Bright colors on black */ |
25 | 29 | --focus-timer-color: #00ff41; |
26 | | - --break-timer-color: #ff8c00; /* Orange text for break timer */ |
27 | | - --long-break-timer-color: #0080ff; /* Blue text for long break timer */ |
| 30 | + --break-timer-color: #ff8c00; |
| 31 | + /* Orange text for break timer */ |
| 32 | + --long-break-timer-color: #0080ff; |
| 33 | + /* Blue text for long break timer */ |
28 | 34 |
|
29 | 35 | /* Button Colors - Terminal effect */ |
30 | 36 | --focus-primary-btn: #00ff41; |
|
281 | 287 | /* General status icon - default green for focus */ |
282 | 288 | :root[data-timer-theme="pipboy"] #status-icon { |
283 | 289 | filter: |
284 | | - drop-shadow(0 0 5px var(--pipboy-focus-glow)) |
285 | | - drop-shadow(0 0 10px var(--pipboy-focus-glow)); |
| 290 | + drop-shadow(0 0 5px var(--pipboy-focus-glow)) drop-shadow(0 0 10px var(--pipboy-focus-glow)); |
286 | 291 | animation: pipboy-glow 2s ease-in-out infinite alternate; |
287 | 292 | } |
288 | 293 |
|
|
291 | 296 | :root[data-timer-theme="pipboy"] .timer-container.break #status-icon, |
292 | 297 | :root[data-timer-theme="pipboy"] body.break #status-icon { |
293 | 298 | filter: |
294 | | - drop-shadow(0 0 5px var(--pipboy-break-glow)) |
295 | | - drop-shadow(0 0 10px var(--pipboy-break-glow)); |
| 299 | + drop-shadow(0 0 5px var(--pipboy-break-glow)) drop-shadow(0 0 10px var(--pipboy-break-glow)); |
296 | 300 | animation: pipboy-glow-break 2s ease-in-out infinite alternate; |
297 | 301 | } |
298 | 302 |
|
|
301 | 305 | :root[data-timer-theme="pipboy"] .timer-container.longBreak #status-icon, |
302 | 306 | :root[data-timer-theme="pipboy"] body.longBreak #status-icon { |
303 | 307 | filter: |
304 | | - drop-shadow(0 0 5px var(--pipboy-longbreak-glow)) |
305 | | - drop-shadow(0 0 10px var(--pipboy-longbreak-glow)); |
| 308 | + drop-shadow(0 0 5px var(--pipboy-longbreak-glow)) drop-shadow(0 0 10px var(--pipboy-longbreak-glow)); |
306 | 309 | animation: pipboy-glow-longbreak 2s ease-in-out infinite alternate; |
307 | 310 | } |
308 | 311 |
|
|
311 | 314 | :root[data-timer-theme="pipboy"] .timer-container.focus #status-icon, |
312 | 315 | :root[data-timer-theme="pipboy"] body.focus #status-icon { |
313 | 316 | filter: |
314 | | - drop-shadow(0 0 5px var(--pipboy-focus-glow)) |
315 | | - drop-shadow(0 0 10px var(--pipboy-focus-glow)); |
| 317 | + drop-shadow(0 0 5px var(--pipboy-focus-glow)) drop-shadow(0 0 10px var(--pipboy-focus-glow)); |
316 | 318 | animation: pipboy-glow 2s ease-in-out infinite alternate; |
317 | 319 | } |
318 | 320 |
|
|
648 | 650 |
|
649 | 651 | /* Break timer state - use orange color like active timer */ |
650 | 652 | :root[data-timer-theme="pipboy"] body.break { |
651 | | - background: linear-gradient(135deg, |
652 | | - var(--pipboy-bg), |
653 | | - #1a0a00, |
654 | | - #2d1a00) !important; |
| 653 | + background: linear-gradient(135deg, |
| 654 | + var(--pipboy-bg), |
| 655 | + #1a0a00, |
| 656 | + #2d1a00) !important; |
655 | 657 | transition: background-color 0.3s ease; |
656 | 658 | } |
657 | 659 |
|
658 | 660 | /* Long break timer state - use blue color like active timer */ |
659 | 661 | :root[data-timer-theme="pipboy"] body.longBreak { |
660 | | - background: linear-gradient(135deg, |
661 | | - var(--pipboy-bg), |
662 | | - #001a2d, |
663 | | - #002642) !important; |
| 662 | + background: linear-gradient(135deg, |
| 663 | + var(--pipboy-bg), |
| 664 | + #001a2d, |
| 665 | + #002642) !important; |
664 | 666 | transition: background-color 0.3s ease; |
665 | 667 | } |
666 | 668 |
|
|
0 commit comments