ishan-25 commited on
Commit
06c2eba
Β·
verified Β·
1 Parent(s): ba62bfc

Delete white_theme_agenda.md

Browse files
Files changed (1) hide show
  1. white_theme_agenda.md +0 -63
white_theme_agenda.md DELETED
@@ -1,63 +0,0 @@
1
- # 🎨 White Theme β€” Next Session Agenda
2
-
3
- ## Strategy
4
- Create a **parallel light-theme version** on a new branch so the dark theme stays untouched.
5
-
6
- ---
7
-
8
- ## Phase 1: Setup (5 min)
9
- - [ ] Create branch: `git checkout -b feature/white-theme`
10
- - [ ] Decide: duplicate `config.py` β†’ `config_light.py`, or add a toggle?
11
-
12
- ## Phase 2: Background & Blobs (10 min)
13
- - [ ] Change `:root` `--bg` from `#080818` β†’ white/off-white (`#f8fafc` or `#ffffff`)
14
- - [ ] Update `--surface` from dark glass β†’ light glass (`rgba(255,255,255,0.7)`)
15
- - [ ] Update `--border` to a soft gray (`rgba(0,0,0,0.08)`)
16
- - [ ] Remap blob colors in `_BLOBS_HTML` to softer pastels (lower opacity, lighter hues)
17
- - [ ] Adjust blob `filter: blur()` and `opacity` for a subtle light-mode glow
18
-
19
- ## Phase 3: Text & Foreground Colors (10 min)
20
- - [ ] Flip `--text-main` β†’ dark (`#1e293b`)
21
- - [ ] Flip `--text-muted` β†’ medium gray (`#64748b`)
22
- - [ ] Flip `--text-dim` β†’ light gray (`#94a3b8`)
23
- - [ ] Update all inline `color:#94a3b8` / `color:#e2e8f0` in step labels & HTML blocks
24
- - [ ] Verify header gradient still pops on white (may need darker gradient stops)
25
-
26
- ## Phase 4: Component Styling (15 min)
27
- - [ ] Step group panels: light glass background, subtle shadow instead of dark glow
28
- - [ ] Textareas: white/near-white bg, soft gray border (keep the 2px blue border accent)
29
- - [ ] Buttons: ensure primary purple buttons contrast well on white
30
- - [ ] Radio buttons (Step 2): verify readability on light surface
31
- - [ ] Tabs: update selected/unselected colors for light mode
32
- - [ ] Accordion headers: flip to dark-on-light text
33
- - [ ] Tips box: adjust indigo overlay for light background
34
-
35
- ## Phase 5: Special Elements (10 min)
36
- - [ ] Footer text: ensure visibility on white
37
- - [ ] Loading state overrides: update `--block-background-fill` for light mode
38
- - [ ] About tab: check blob z-index and text contrast
39
- - [ ] PDF report styling (if any inline colors need updating)
40
-
41
- ## Phase 6: Test & Polish (10 min)
42
- - [ ] Full visual walkthrough of all 4 tabs
43
- - [ ] Check responsiveness at different widths
44
- - [ ] Verify no white-on-white or invisible elements
45
- - [ ] Commit & push
46
-
47
- ---
48
-
49
- ## Key Files to Touch
50
- | File | What Changes |
51
- |---|---|
52
- | `config.py` | `:root` CSS variables, step group styles, glass panel colors |
53
- | `interview_coach.py` | `_BLOBS_HTML` colors, inline HTML `style=` attributes, theme hues |
54
-
55
- ## Reference: Current Dark Palette β†’ Light Palette
56
- | Token | Dark Value | Light Target |
57
- |---|---|---|
58
- | `--bg` | `#080818` | `#f8fafc` |
59
- | `--surface` | `rgba(15,15,35,0.65)` | `rgba(255,255,255,0.7)` |
60
- | `--border` | `rgba(99,102,241,0.15)` | `rgba(0,0,0,0.08)` |
61
- | `--text-main` | `#e2e8f0` | `#1e293b` |
62
- | `--text-muted` | `#94a3b8` | `#64748b` |
63
- | `--indigo` | `#6366f1` | `#6366f1` (keep) |