Files
hyperframes/skills/talking-head-recut/references/styles/spotlight.html
T
56859b618f refactor(skills): rename graphic-overlays skill to talking-head-recut (#1720)
Rename the `graphic-overlays` workflow skill to `talking-head-recut`:

- move skills/graphic-overlays/ -> skills/talking-head-recut/
- update SKILL.md frontmatter name, H1, and self-references
- update all /graphic-overlays route references (hyperframes router,
  general-video, root + cli-template AGENTS.md/CLAUDE.md, docs, quickstart)
- update telemetry --skill flag, example composition id, timeline key
- update .prettierignore path and scripts/test-skills-fresh.sh

Identifier-only rename: the graphic-overlay card mechanism, design
references, and trigger wording are unchanged.

Co-authored-by: kiritowoo <295860553+kiritowoo@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-26 00:32:51 +08:00

143 lines
4.8 KiB
HTML

<!--
Style: spotlight — dark purple gradient · violet glow · dramatic
─────────────────────────────────────────────────────────────────────
Tokens
bg radial-gradient deep purple-blue (#0e0a24 → #1b1648)
ink #f5f3ff (off-white)
muted #b6b4d0
accent #a78bfa (violet) — used as glow + kicker dot
accent2#7c6bff (deeper violet) — used as outer-glow second layer
Fonts
headline — ui-serif fallback for serif drama; or Playfair-like
body — ui-sans-serif
Best with
layouts: overlay, pip
frames: clean (skip hairline/polaroid — clashes with glow)
content: 情绪故事 / 旁白 / 角色弧线 / 黑暗时刻
-->
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<title>style · spotlight</title>
<style>
html,
body {
margin: 0;
padding: 0;
background: #0a0c12;
font-family: ui-sans-serif, system-ui, sans-serif;
}
.stage {
position: relative;
width: 1920px;
height: 1080px;
transform-origin: top left;
transform: scale(0.5);
overflow: hidden;
}
.card-host {
position: absolute;
left: 0;
top: 0;
width: 1920px;
height: 1080px;
}
</style>
</head>
<body>
<div class="stage">
<div class="card-host">
<div class="card" data-card-id="ref-spotlight">
<style>
.card[data-card-id="ref-spotlight"] .root {
--ink: #f5f3ff;
--muted: #b6b4d0;
--accent: #a78bfa;
--accent2: #7c6bff;
--font-head: ui-serif, "Songti SC", serif;
--font-body: ui-sans-serif, system-ui, sans-serif;
--font-mono: ui-monospace, monospace;
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
color: var(--ink);
font-family: var(--font-body);
background:
radial-gradient(70% 55% at 28% 30%, rgba(167, 139, 250, 0.35) 0%, transparent 55%),
radial-gradient(80% 70% at 80% 80%, rgba(124, 107, 255, 0.22) 0%, transparent 60%),
linear-gradient(160deg, #1b1648 0%, #0e0a24 100%);
padding: 48px 56px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
gap: 22px;
}
.card[data-card-id="ref-spotlight"] .meta {
display: flex;
align-items: center;
gap: 14px;
}
.card[data-card-id="ref-spotlight"] .kicker-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--accent);
box-shadow:
0 0 18px var(--accent),
0 0 4px var(--accent);
}
.card[data-card-id="ref-spotlight"] .kicker {
font: 600 16px/1 var(--font-mono);
letter-spacing: 0.26em;
color: var(--accent);
}
.card[data-card-id="ref-spotlight"] .title {
margin: 0;
font: 800 104px/1.05 var(--font-head);
color: var(--ink);
letter-spacing: -0.005em;
text-shadow: 0 4px 60px rgba(167, 139, 250, 0.45);
}
.card[data-card-id="ref-spotlight"] .hl {
color: var(--accent);
text-shadow: 0 0 24px rgba(167, 139, 250, 0.7);
}
.card[data-card-id="ref-spotlight"] .detail {
margin: 0;
font: 28px/1.55 var(--font-body);
color: var(--muted);
max-width: 88%;
}
</style>
<div class="root">
<div class="meta">
<span
class="kicker-dot"
data-anim="scale-pop"
data-anim-at="0.05"
data-anim-duration="0.4"
></span>
<span class="kicker" data-anim="fade-in" data-anim-at="0.1" data-anim-duration="0.4"
>TAKEAWAY</span
>
</div>
<h2 class="title" data-anim="blur-in" data-anim-at="0.3" data-anim-duration="0.7">
在最暗的房间里,<span class="hl">一道光</span>就够了。
</h2>
<p class="detail" data-anim="fade-in" data-anim-at="1.0" data-anim-duration="0.5">
所有伟大决定都是在不确定的时候做出的。怕的不是黑,是不敢点亮那一根火柴。
</p>
</div>
</div>
</div>
</div>
</body>
</html>