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

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ Examples in `library/svg/`: `sparkles.svg` (loop), `lower-third.svg`,
**Filter / color** (video/image/svg):
| prop | default | notes |
|---|---|---|
| `filterPreset` | "none" | one of: cinematic · teal-orange · noir · vintage · faded · warm · cold · pop · dreamy · retro · bw-soft · cyberpunk. Combines non-destructively with the sliders below. |
| `filterPreset` | "none" | one of: cinematic · teal-orange · noir · vintage · faded · warm · cold · pop · dreamy · retro · bw-soft · cyberpunk · sunset · midnight. Combines non-destructively with the sliders below. |
| `brightness` `contrast` `saturation` | 100 | % (100 = neutral) |
| `hue` | 0 | degrees |
| `temperature` | 0 | −100 (cool blue) … +100 (warm orange) |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ same time.

**Look**

- 12 one-click filter presets (cinematic, teal-orange, noir, vintage, cyberpunk…)
- 14 one-click filter presets (cinematic, teal-orange, noir, vintage, cyberpunk, sunset, midnight…)
- **Adjustment layers** — one clip grades everything below it, Premiere-style
- Full grade controls: brightness/contrast/saturation/hue, **temperature & tint**,
blur, grayscale/sepia/invert, **vignette**, animated **film grain**
Expand Down
2 changes: 2 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ const FILTER_PRESETS = {
retro: { saturation: 130, hue: -6, contrast: 106, sepia: 15 },
"bw-soft": { grayscale: 100, contrast: 95, brightness: 108 },
cyberpunk: { saturation: 140, hue: 12, contrast: 118, temperature: -15, vignette: 25 },
sunset: { temperature: 24, tint: 6, brightness: 105, saturation: 116, contrast: 104, vignette: 20 },
midnight: { temperature: -24, brightness: 88, contrast: 122, saturation: 94, vignette: 38 },
};
const SYSTEM_FONTS = ["Segoe UI", "Arial", "Georgia", "Impact", "Courier New",
"Trebuchet MS", "Verdana", "Times New Roman", "Comic Sans MS", "Consolas"];
Expand Down