We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b82a407 commit 3358ca8Copy full SHA for 3358ca8
2 files changed
src/ui/theme/presets.ts
@@ -10,6 +10,7 @@ export const DEFAULT_THEME: ThemeTokens = {
10
info: "#0969da",
11
text: "#3D4149",
12
textDim: "#646A71",
13
+ textBright: "#646A71",
14
code: "#787f8a",
15
border: "#999",
16
gradients: ["#229ac3", "#8250df"],
src/ui/theme/types.ts
@@ -21,6 +21,8 @@ export interface ThemeTokens {
21
text: string;
22
/** 次要文字:暗化提示,及 Markdown 引用块 */
23
textDim: string;
24
+ /** 亮色文字:强调提示 */
25
+ textBright: string;
26
/** 代码块/内联代码 */
27
code: string;
28
/** 边框 */
0 commit comments