mirror of
https://github.com/lutinglt/gitea-github-theme.git
synced 2026-04-17 17:51:38 +08:00
action 页面同步
This commit is contained in:
@@ -1,12 +1,21 @@
|
||||
import type { MapLeafNodes } from "src/core/types";
|
||||
import * as color from "./color";
|
||||
|
||||
/** 主色调 */
|
||||
export type Primary = MapLeafNodes<typeof color.primary, string>;
|
||||
/** 副色调 */
|
||||
export type Secondary = MapLeafNodes<typeof color.secondary, string>;
|
||||
/** 基础颜色 */
|
||||
export type Named = MapLeafNodes<typeof color.named, string>;
|
||||
/** 提示消息 */
|
||||
export type Message = MapLeafNodes<typeof color.message, string>;
|
||||
/** Actions 日志 ANSI 颜色 */
|
||||
export type Ansi = MapLeafNodes<typeof color.ansi, string>;
|
||||
/** Actions 颜色 */
|
||||
export type Console = MapLeafNodes<typeof color.console, string>;
|
||||
/** 代码差异对比颜色 */
|
||||
export type Diff = MapLeafNodes<typeof color.diff, string>;
|
||||
/** 其他颜色 */
|
||||
export type Other = MapLeafNodes<typeof color.other, string>;
|
||||
/** 仅限本主题的 Github 颜色 */
|
||||
export type Github = MapLeafNodes<typeof color.github, string>;
|
||||
|
||||
Reference in New Issue
Block a user