converter.py 新增 6 项能力: - CJK-Latin 自动加空格(中英混排更易读) - 加粗标点外移(修复微信渲染 bug) - ul/ol 转 section(微信原生列表不稳定) - 外链→编号脚注 + 文末参考链接(微信屏蔽外链) - data-darkmode-* 属性注入(适配微信暗黑模式) - :::dialogue / :::timeline / :::callout / :::quote 容器语法 主题系统: - 从 4 个扩充到 16 个(含字节/少数派/报纸/包豪斯/水墨/午夜等风格) - 所有主题新增 darkmode 色值 - 新增 gallery 命令:浏览器内 16 主题并排预览 + 一键复制 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
198 lines
3.5 KiB
YAML
198 lines
3.5 KiB
YAML
name: "sspai"
|
|
description: "少数派风格:暖白底红色点缀,清爽文艺,适合数码生活和效率工具内容"
|
|
colors:
|
|
primary: "#c7372f"
|
|
secondary: "#d4524b"
|
|
text: "#333333"
|
|
text_light: "#888888"
|
|
background: "#fafaf7"
|
|
code_bg: "#f5f2ed"
|
|
code_color: "#c7372f"
|
|
quote_border: "#c7372f"
|
|
quote_bg: "#fdf5f4"
|
|
border_radius: "6px"
|
|
darkmode:
|
|
background: "#1c1c1a"
|
|
text: "#e0ddd8"
|
|
text_light: "#9a9790"
|
|
primary: "#e05a52"
|
|
code_bg: "#2a2825"
|
|
code_color: "#e87c76"
|
|
quote_bg: "#2a2220"
|
|
quote_border: "#e05a52"
|
|
base_css: |
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.85;
|
|
color: #333333;
|
|
background: #fafaf7;
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 26px;
|
|
font-weight: 700;
|
|
color: #1a1a1a;
|
|
margin: 36px 0 18px 0;
|
|
text-align: center;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 21px;
|
|
font-weight: 700;
|
|
color: #c7372f;
|
|
margin: 30px 0 14px 0;
|
|
padding-bottom: 8px;
|
|
border-bottom: 2px solid #c7372f;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
margin: 24px 0 12px 0;
|
|
padding-left: 10px;
|
|
border-left: 3px solid #c7372f;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
margin: 20px 0 10px 0;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
line-height: 1.85;
|
|
color: #333333;
|
|
margin: 14px 0;
|
|
}
|
|
|
|
strong {
|
|
font-weight: 700;
|
|
color: #c7372f;
|
|
}
|
|
|
|
em {
|
|
font-style: italic;
|
|
color: #666666;
|
|
}
|
|
|
|
code {
|
|
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
font-size: 14px;
|
|
background: #f5f2ed;
|
|
color: #c7372f;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
pre {
|
|
background: #f5f2ed;
|
|
color: #333333;
|
|
padding: 16px;
|
|
border-radius: 6px;
|
|
overflow-x: auto;
|
|
margin: 16px 0;
|
|
line-height: 1.6;
|
|
border: 1px solid #e8e4dc;
|
|
}
|
|
|
|
pre code {
|
|
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
font-size: 14px;
|
|
background: none;
|
|
color: #333333;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: 4px solid #c7372f;
|
|
background: #fdf5f4;
|
|
margin: 16px 0;
|
|
padding: 12px 16px;
|
|
border-radius: 0 6px 6px 0;
|
|
color: #555555;
|
|
}
|
|
|
|
blockquote p {
|
|
margin: 8px 0;
|
|
color: #555555;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 24px;
|
|
margin: 14px 0;
|
|
}
|
|
|
|
ol {
|
|
padding-left: 24px;
|
|
margin: 14px 0;
|
|
}
|
|
|
|
li {
|
|
font-size: 16px;
|
|
line-height: 1.85;
|
|
color: #333333;
|
|
margin: 6px 0;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 16px 0;
|
|
font-size: 15px;
|
|
}
|
|
|
|
thead {
|
|
background: #c7372f;
|
|
}
|
|
|
|
th {
|
|
background: #c7372f;
|
|
color: #ffffff;
|
|
font-weight: 600;
|
|
padding: 10px 14px;
|
|
text-align: left;
|
|
border: 1px solid #c7372f;
|
|
}
|
|
|
|
td {
|
|
padding: 10px 14px;
|
|
border: 1px solid #e8e4dc;
|
|
color: #333333;
|
|
}
|
|
|
|
tr {
|
|
background: #fafaf7;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
margin: 24px auto;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
a {
|
|
color: #c7372f;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
border-top: 1px solid #e8e4dc;
|
|
margin: 28px 0;
|
|
}
|