Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 4 additions & 17 deletions .claude-prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,13 @@ at `/usr/bin/google-chrome`.

# The issue

Title: Change background to yellow — more playful vibe
Title: Test: change snake game high-score color

Number: #15
Number: #17

Body:
```
### Problem

The current background is a dark `#0a0c12` with a subtle dot grid. It's stylish but feels a bit moody for a snake game.

### Expected

Warm, playful yellow background. Something like `#fde047` or `#facc15` (Tailwind amber/yellow). Keep the dot-grid pattern if possible, just tint the base.

### Scope

- Update the `body` background color in `index.html` (the inline `<style>` block).
- Adjust any foreground text/element colors that now clash with yellow (e.g. `#f4f4f5` text on yellow is unreadable). Pick a dark foreground that looks good on yellow, e.g. `#18181b`.
- Keep the snake's retro green — it already contrasts well with yellow.
- Please include before/after screenshots in the PR.
Change the high-score number on the snake game start screen to a clear yellow (e.g. #FACC15). Small visible change to verify the fix-on-issue loop is healthy after recent boxd platform updates.
```

# Your job
Expand Down Expand Up @@ -60,7 +47,7 @@ Warm, playful yellow background. Something like `#fde047` or `#facc15` (Tailwind
```
6. Commit your changes on the current branch with a descriptive message.
Use `git add -A && git commit -m "..."`. Subject line:
`fix: <short description> (closes #15)`.
`fix: <short description> (closes #17)`.
7. Do NOT open a PR. Do NOT push. The caller will handle that.

If you need deeper browser inspection (clicking, console logs, network
Expand Down
Binary file modified .claude-screenshots/after.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .claude-screenshots/before.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
color: #52525b;
}
.hud span { color: #E05A6D; font-weight: 600; }
.hud #best { color: #FACC15; }
.canvas-wrap {
position: relative;
width: 480px;
Expand Down