Add Boys/beetroot color, bump event font size by 1px

- New 'Boys' member with beetroot color (#6B1040 / #D4A8C0) — any event
  containing the word "Boys" gets this color
- Mom/Dad were already matched via fuzzy alias detection (no change needed)
- Event card font sizes increased by 1px (12.5px body, 11.5px time, 11px member)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-27 21:25:11 +12:00
parent 98b4de70e7
commit db1d422b21
2 changed files with 8 additions and 7 deletions

View File

@@ -39,5 +39,6 @@ class Config:
{'key': 'mom', 'name': 'Michelle', 'aliases': ['michelle', 'mom'], 'color': '#BF1A6B', 'bg': '#FAC2DC'}, {'key': 'mom', 'name': 'Michelle', 'aliases': ['michelle', 'mom'], 'color': '#BF1A6B', 'bg': '#FAC2DC'},
{'key': 'jason', 'name': 'Jason', 'aliases': ['jason'], 'color': '#1A8C1E', 'bg': '#BFEDCA'}, {'key': 'jason', 'name': 'Jason', 'aliases': ['jason'], 'color': '#1A8C1E', 'bg': '#BFEDCA'},
{'key': 'daniel','name': 'Daniel', 'aliases': ['daniel'], 'color': '#BF7A00', 'bg': '#FAE4A0'}, {'key': 'daniel','name': 'Daniel', 'aliases': ['daniel'], 'color': '#BF7A00', 'bg': '#FAE4A0'},
{'key': 'boys', 'name': 'Boys', 'aliases': ['boys'], 'color': '#6B1040', 'bg': '#D4A8C0'},
] ]
DEFAULT_MEMBER = {'key': 'family', 'name': 'Family', 'color': '#666666', 'bg': '#E0E0E0'} DEFAULT_MEMBER = {'key': 'family', 'name': 'Family', 'color': '#666666', 'bg': '#E0E0E0'}

View File

@@ -120,14 +120,14 @@ html, body {
border-radius: 8px; border-radius: 8px;
padding: 6px 8px; padding: 6px 8px;
border-left: 5px solid transparent; border-left: 5px solid transparent;
font-size: 11.5px; font-size: 12.5px;
line-height: 1.35; line-height: 1.35;
} }
.event-time { .event-time {
font-weight: 700; font-weight: 700;
color: rgba(0, 0, 0, 0.5); color: rgba(0, 0, 0, 0.5);
font-size: 10.5px; font-size: 11.5px;
} }
.event-title { .event-title {
@@ -137,7 +137,7 @@ html, body {
} }
.event-member { .event-member {
font-size: 10px; font-size: 11px;
font-weight: 600; font-weight: 600;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
margin-top: 2px; margin-top: 2px;