8eda27f241
PR #9 已完成首页和 layout 的视觉品牌迁移,此 commit 补齐剩余的 技术性改名 —— workspace 包名、source import、localStorage 键、 CSS keyframe、内部 header logo、.env.example、README。 - @yume/* → @infiplot/* (6 package.json + 17 imports + lockfile) - localStorage/sessionStorage: yume:* → infiplot:* (含 PR #9 新增的 yume:hintClosed) - CSS keyframe yume-ripple → infiplot-ripple - new/play 页面 header logo "云梦" → "InfiPlot" - 代码注释中的「云梦」style 形容词删除(layout.tsx, page.tsx) - 根 package.json name + description(描述跟齐 staging "AI 实时交互剧情游戏") - README: tagline / Vercel deploy URL / 目录树 / engine 描述 保留:prompts.ts 的 LLM 体裁术语「视觉小说/galgame」、CustomForm placeholder 的「视觉小说画风」(图像模型识别的风格名词)。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
69 lines
1.2 KiB
CSS
69 lines
1.2 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
font-feature-settings: "ss01", "kern", "liga";
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
background-image:
|
|
radial-gradient(rgba(133, 79, 37, 0.025) 1px, transparent 1px),
|
|
radial-gradient(rgba(133, 79, 37, 0.018) 1px, transparent 1px);
|
|
background-size: 28px 28px, 38px 38px;
|
|
background-position: 0 0, 14px 19px;
|
|
}
|
|
|
|
::selection {
|
|
background-color: rgb(217 122 46 / 0.28);
|
|
color: #2d1810;
|
|
}
|
|
|
|
textarea::placeholder {
|
|
color: rgb(168 105 59 / 0.45);
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.hairline {
|
|
background-image: linear-gradient(
|
|
to right,
|
|
transparent,
|
|
rgba(45, 24, 16, 0.18) 18%,
|
|
rgba(45, 24, 16, 0.18) 82%,
|
|
transparent
|
|
);
|
|
height: 1px;
|
|
}
|
|
|
|
.hairline-full {
|
|
height: 1px;
|
|
background: rgba(45, 24, 16, 0.14);
|
|
}
|
|
|
|
.num {
|
|
font-variant-numeric: tabular-nums lining-nums;
|
|
}
|
|
|
|
.smallcaps {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.32em;
|
|
}
|
|
}
|
|
|
|
@keyframes infiplot-ripple {
|
|
0% {
|
|
width: 14px;
|
|
height: 14px;
|
|
opacity: 0.95;
|
|
}
|
|
100% {
|
|
width: 110px;
|
|
height: 110px;
|
|
opacity: 0;
|
|
}
|
|
}
|