本公告说明 Protocol v1.9.2 的核心修正:**处决下划线**、**色彩降噪**。
修正一:处决下划线
全局 CSS 强制设定 text-decoration: none !important;。链接交互通过颜色微妙变化体现。
✗ 修正前
文字下划线
违反 Leo 审美红线
✓ 修正后
无下划线,仅颜色变化
符合 Stripe/Linear 模式
修正二:色彩降噪
删除所有高饱和度蓝色,统一使用低饱和度「实验室冰青」。
实验室冰青 (Lab Ice Cyan)
#3FC1D0 (20% 低饱和)
钛金灰 (Titanium Gray)
#A0AEC0
参考网站分析
已学习 Stripe、Linear、Vercel 的无下划线设计模式:
- Stripe: 颜色变化 (灰色 → 微蓝)
- Linear: 背景微光
- Vercel: Border 提示
链接交互规范
/* 全局链接重置 */
a {
color: #A0AEC0; /* 钛金灰 */
text-decoration: none !important;
transition: color 0.3s ease;
}
a:hover {
color: #3FC1D0; /* 冰青色 */
}
版本对比
v1.9.1
- --color-accent: #4FD1ED
- 下划线: 未禁止
- 饱和度: 标准
v1.9.2
- --color-accent: #3FC1D0
- 下划线: !important 禁止
- 饱和度: -20%