@lemonppt/themes 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/theme07/tokens.js +1 -1
- package/dist/theme08/tokens.d.ts +1 -1
- package/dist/theme08/tokens.js +1 -1
- package/dist/theme09/tokens.d.ts +1 -1
- package/dist/theme10/tokens.d.ts +3 -3
- package/dist/theme10/tokens.js +1 -1
- package/package.json +2 -2
- package/src/theme07/styles.css +8 -8
- package/src/theme08/styles.css +1 -1
package/dist/theme07/tokens.js
CHANGED
package/dist/theme08/tokens.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* 风格:黑金实验风 / Black Gold Experimental。
|
|
10
10
|
* 深黑底 + 荧光金主强调 + 玫红/冷蓝/淡紫灰点缀,适合高端发布、品牌提案、实验性概念。
|
|
11
11
|
* 数字使用展示型字体(Anton,项目字体库已内嵌 @font-face)增强冲击力;双背景 primary(深黑)/muted(象牙暖白)。
|
|
12
|
-
* 所有色值/类名均为原创,不复制
|
|
12
|
+
* 所有色值/类名均为原创,不复制 third-party theme08 具体实现与 --acl- 前缀。
|
|
13
13
|
*/
|
|
14
14
|
export interface Theme08Tokens {
|
|
15
15
|
id: string;
|
package/dist/theme08/tokens.js
CHANGED
package/dist/theme09/tokens.d.ts
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
*
|
|
18
18
|
* appearance(primary / muted)不翻转明暗,只调整**专色浓度与网点密度**。
|
|
19
19
|
*
|
|
20
|
-
* 所有色值、类名、装饰语汇均为原创,不复制
|
|
20
|
+
* 所有色值、类名、装饰语汇均为原创,不复制 third-party theme09 的实现、
|
|
21
21
|
* 色值(#46e3c6 / #4a86ff 等)、类名(bg-deep / bg-blue 等)与 --acl- 前缀。
|
|
22
22
|
*/
|
|
23
23
|
export type Theme09Appearance = 'primary' | 'muted';
|
package/dist/theme10/tokens.d.ts
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
* theme10 设计 Token。
|
|
9
9
|
* 风格:金色指数 · 金融编辑风 / Gold Index · Financial Editorial。
|
|
10
10
|
*
|
|
11
|
-
* 视觉坐标(与 theme08 黑金实验、theme09 墨韵专色、
|
|
11
|
+
* 视觉坐标(与 theme08 黑金实验、theme09 墨韵专色、third-party theme10 全部区分开):
|
|
12
12
|
* 冰蓝主强调 #4a7fd4 + 香槟金/铜点睛 #d9b977 / #c97a52 + mono 数据字体 + 账本细线/刻度质感。
|
|
13
|
-
* 三情绪渐变(aurora / obsidian / ember)全部自写,不抄 theme10
|
|
13
|
+
* 三情绪渐变(aurora / obsidian / ember)全部自写,不抄 theme10 third-party 的 dusk/midnight/dawn,
|
|
14
14
|
* 也不抄 theme08 的荧光金 #ECEF35 / Anton / 手绘箭头。
|
|
15
15
|
*
|
|
16
|
-
* 所有色值、类名、装饰语汇均为原创,不复制
|
|
16
|
+
* 所有色值、类名、装饰语汇均为原创,不复制 third-party theme10 的实现、专色族
|
|
17
17
|
* (含其同族错值)、类名(lp-theme10-* 仅 our 自创骨架)与保留前缀变量。
|
|
18
18
|
*/
|
|
19
19
|
export type Theme10Mood = 'aurora' | 'obsidian' | 'ember';
|
package/dist/theme10/tokens.js
CHANGED
|
@@ -13,7 +13,7 @@ const MOOD_GRADIENT = {
|
|
|
13
13
|
ember: 'linear-gradient(160deg, #171320 0%, #46363f 38%, #8a6356 72%, #cfa882 100%)',
|
|
14
14
|
};
|
|
15
15
|
/* ────────────────────────────────────────────────────────────────
|
|
16
|
-
* 强调色系统(冰蓝主 + 金铜点睛,自写 hex,与
|
|
16
|
+
* 强调色系统(冰蓝主 + 金铜点睛,自写 hex,与 third-party 同族错值)
|
|
17
17
|
* 全部经 WCAG 2.1 AA 预校验(近白 #eef1f6 在 #05070b 上 ≥ 15:1;
|
|
18
18
|
* 冰蓝 #4a7fd4 / 香槟金 #d9b977 在深底上 ≥ 4.5:1)
|
|
19
19
|
* ──────────────────────────────────────────────────────────────── */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemonppt/themes",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/lemonforme/lemonPPT#readme",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@lemonppt/core": "0.2.
|
|
30
|
+
"@lemonppt/core": "0.2.2"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"typescript": "^5.5.0"
|
package/src/theme07/styles.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
3
3
|
* 冷白底 + 深墨文字 + 低饱和强调色 + 衬线标题 + 结构化数据卡片
|
|
4
4
|
* 借鉴「冷白机构视觉系统」思路:柔和光晕、数据条码、卡片水印、章节深色变体
|
|
5
|
-
* 所有色值/类名均为原创,不复制
|
|
5
|
+
* 所有色值/类名均为原创,不复制 third-party theme07 具体实现
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/* ============ 基础布局与氛围背景 ============ */
|
|
@@ -1728,7 +1728,7 @@
|
|
|
1728
1728
|
overflow: hidden;
|
|
1729
1729
|
}
|
|
1730
1730
|
|
|
1731
|
-
/* ============
|
|
1731
|
+
/* ============ 通用聚焦高亮(数据页统一,对齐参考 focusEnabled/focusIndex) ============ */
|
|
1732
1732
|
.lp-theme07 .lp-focus {
|
|
1733
1733
|
position: relative;
|
|
1734
1734
|
border-color: var(--lp-accent) !important;
|
|
@@ -3401,7 +3401,7 @@
|
|
|
3401
3401
|
}
|
|
3402
3402
|
}
|
|
3403
3403
|
|
|
3404
|
-
/* ============ DROP MEDIA
|
|
3404
|
+
/* ============ DROP MEDIA 图片占位(参考 PPT 签名设计) ============ */
|
|
3405
3405
|
|
|
3406
3406
|
.lp-theme07-drop-media {
|
|
3407
3407
|
position: relative;
|
|
@@ -3476,7 +3476,7 @@
|
|
|
3476
3476
|
border-top: 1px solid rgba(123, 158, 123, 0.12);
|
|
3477
3477
|
}
|
|
3478
3478
|
|
|
3479
|
-
/* --- company-layout
|
|
3479
|
+
/* --- company-layout 图片区域升级(匹配参考 PPT page056/057) --- */
|
|
3480
3480
|
|
|
3481
3481
|
.lp-theme07-company-image {
|
|
3482
3482
|
width: 100%;
|
|
@@ -3512,7 +3512,7 @@
|
|
|
3512
3512
|
);
|
|
3513
3513
|
}
|
|
3514
3514
|
|
|
3515
|
-
/* --- case-v1
|
|
3515
|
+
/* --- case-v1 每张卡片图片区域(匹配参考 PPT page009) --- */
|
|
3516
3516
|
|
|
3517
3517
|
.lp-theme07-case-card-image {
|
|
3518
3518
|
width: 100%;
|
|
@@ -3530,7 +3530,7 @@
|
|
|
3530
3530
|
object-fit: cover;
|
|
3531
3531
|
}
|
|
3532
3532
|
|
|
3533
|
-
/* --- sector-layout
|
|
3533
|
+
/* --- sector-layout 右侧图片区域(匹配参考 PPT page030) --- */
|
|
3534
3534
|
|
|
3535
3535
|
.lp-theme07-sector-image {
|
|
3536
3536
|
width: 100%;
|
|
@@ -3540,7 +3540,7 @@
|
|
|
3540
3540
|
flex-shrink: 0;
|
|
3541
3541
|
}
|
|
3542
3542
|
|
|
3543
|
-
/* --- closing-layout / about_lab
|
|
3543
|
+
/* --- closing-layout / about_lab 右侧图片区域(匹配参考 PPT page071) --- */
|
|
3544
3544
|
|
|
3545
3545
|
.lp-theme07-closing-aside {
|
|
3546
3546
|
display: flex;
|
|
@@ -3557,7 +3557,7 @@
|
|
|
3557
3557
|
overflow: hidden;
|
|
3558
3558
|
}
|
|
3559
3559
|
|
|
3560
|
-
/* --- geo-layout
|
|
3560
|
+
/* --- geo-layout 装饰圆圈元素(匹配参考 PPT page053) --- */
|
|
3561
3561
|
|
|
3562
3562
|
.lp-theme07-geo-deco {
|
|
3563
3563
|
position: relative;
|
package/src/theme08/styles.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* lemonPPT - theme08 黑金实验风 / Black Gold Experimental
|
|
2
2
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
3
3
|
* 深黑底 + 荧光金 + 高饱和点缀 + Anton 展示数字体(项目内嵌)+ 手绘装饰层
|
|
4
|
-
* 所有色值/类名均为原创,不复制
|
|
4
|
+
* 所有色值/类名均为原创,不复制 third-party theme08 具体实现
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
/* ============ 基础布局与黑金氛围背景 ============ */
|