|
| 1 | +// Copyright 2020-2025 The Hello World Writer. All rights reserved. |
| 2 | +// https://www.thehelloworldwriter.com |
| 3 | +// |
| 4 | +// Use of this source code is governed by an MIT-style license |
| 5 | +// that can be found in the LICENSE file. |
| 6 | + |
| 7 | +import '../models/counter.dart'; |
| 8 | + |
| 9 | +const Map<CounterType, List<String>> counterIdeas = { |
| 10 | + CounterType.black: [], |
| 11 | + CounterType.white: [], |
| 12 | + CounterType.red: [ |
| 13 | + // --- VISUAL (Literally Red) --- |
| 14 | + 'Red cars that were definitely speeding', |
| 15 | + 'Tomatoes sliced for a sandwich', |
| 16 | + 'Spicy chili peppers I dared to eat', |
| 17 | + 'Apples eaten to keep the doctor away', |
| 18 | + 'People wearing a red shirt today', |
| 19 | + 'Roses I stopped to smell', |
| 20 | + 'Bricks in the wall (if you are extremely bored)', |
| 21 | + 'Slices of pepperoni pizza', |
| 22 | + 'Glasses of red wine consumed', |
| 23 | + // --- UI & TECH (Red in Interfaces) --- |
| 24 | + 'Bugs found in production code', // Errors are red |
| 25 | + 'Times the battery icon turned red', // Low battery |
| 26 | + 'YouTube videos watched instead of working', // Logo is red |
| 27 | + 'Critical errors I pretended I didn\'t see', |
| 28 | + 'Urgent emails marked "High Priority"', // Usually red exclamation mark |
| 29 | + 'False alarms from the smoke detector', // Device is red |
| 30 | + // --- SYMBOLIC & EMOTIONAL (Metaphors) --- |
| 31 | + 'Stop signs that I actually stopped for', // Stop = Red |
| 32 | + 'Times I successfully said "No"', // Cancel/No buttons are red |
| 33 | + 'Red flags I ignored in a conversation', // The idiom |
| 34 | + 'Times I blushed from embarrassment', // Turning red |
| 35 | + 'Moments I felt actual "road rage"', // Seeing red/Anger |
| 36 | + ], |
| 37 | + CounterType.green: [], |
| 38 | + CounterType.yellow: [], |
| 39 | + CounterType.blue: [ |
| 40 | + 'Glasses of water', |
| 41 | + 'Bugs fixed', |
| 42 | + 'Times you looked at the sky', |
| 43 | + 'Deep breaths taken', |
| 44 | + 'Cold emails sent', |
| 45 | + ], |
| 46 | + CounterType.brown: [ |
| 47 | + 'Glasses of water', |
| 48 | + 'Bugs fixed', |
| 49 | + 'Times you looked at the sky', |
| 50 | + 'Deep breaths taken', |
| 51 | + 'Cold emails sent', |
| 52 | + ], |
| 53 | + CounterType.purple: [ |
| 54 | + 'Creative bursts', |
| 55 | + 'Royal moments', |
| 56 | + 'Songs looped', |
| 57 | + 'Unusual coincidences', |
| 58 | + 'Dreams remembered', |
| 59 | + ], |
| 60 | + CounterType.pink: [ |
| 61 | + 'Creative bursts', |
| 62 | + 'Royal moments', |
| 63 | + 'Songs looped', |
| 64 | + 'Unusual coincidences', |
| 65 | + 'Dreams remembered', |
| 66 | + ], |
| 67 | + CounterType.orange: [ |
| 68 | + 'Creative bursts', |
| 69 | + 'Royal moments', |
| 70 | + 'Songs looped', |
| 71 | + 'Unusual coincidences', |
| 72 | + 'Dreams remembered', |
| 73 | + ], |
| 74 | + CounterType.grey: [ |
| 75 | + 'Creative bursts', |
| 76 | + 'Royal moments', |
| 77 | + 'Songs looped', |
| 78 | + 'Unusual coincidences', |
| 79 | + 'Dreams remembered', |
| 80 | + ], |
| 81 | +}; |
0 commit comments