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
11 changes: 11 additions & 0 deletions .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,19 @@ on:
# - "src/**/*.js"
# - "src/**/*.jsx"

permissions:
contents: read
pull-requests: read
issues: read
id-token: write

jobs:
claude-review:
if: |
github.event_name == 'pull_request' &&
(github.event.pull_request.author_association == 'OWNER' ||
github.event.pull_request.author_association == 'MEMBER' ||
github.event.pull_request.author_association == 'COLLABORATOR')
# Optional: Filter by PR author
# if: |
# github.event.pull_request.user.login == 'external-contributor' ||
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/claude-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ on:

jobs:
claude-pr-review:
if: github.event_name == 'pull_request'
if: |
github.event_name == 'pull_request' &&
(github.event.pull_request.author_association == 'OWNER' ||
github.event.pull_request.author_association == 'MEMBER' ||
github.event.pull_request.author_association == 'COLLABORATOR')
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,15 @@ Open [http://localhost:3000](http://localhost:3000) — component changes reflec
bun run build
```

## Theme (Dark Mode)

Reframe supports a theme toggle in the header that switches between light, dark, and a high-contrast mode. The app remembers your choice in localStorage and will respect your system preference when no explicit choice is saved.

- Use the theme button in the top-right to switch modes.
- The selected theme is persisted across sessions.
- You can override the theme manually in the browser console by setting `localStorage.setItem('theme', 'dark')` (values: `light`, `dark`, `high-contrast`) and reloading the page.


Outputs a static site to `out/` — deploy to Vercel, Netlify, GitHub Pages, or any static host.

---
Expand Down
Loading
Loading