Skip to content

Commit

Permalink
docs: 更新文档
Browse files Browse the repository at this point in the history
  • Loading branch information
caixw committed Sep 9, 2024
1 parent 4e57e09 commit 8413658
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions admin/src/app/options/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,21 @@ export interface Locales {
}

export interface Theme {
/**
* 主题模式
*/
mode: Mode;

/**
* 对比度
*/
contrast: Contrast;

/**
* 主题的颜色
*
* 如果是数值类型,那么将以此值作为主色调的色相,然后根据此值生成 {@link Scheme} 对象。
*/
scheme: Scheme | number;
}

Expand Down
2 changes: 1 addition & 1 deletion admin/src/core/api/serializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SPDX-License-Identifier: MIT

/**
* 当前支持的 mime type
* 当前 API 支持的 mime type
*/
export const mimetypes = ['application/json'] as const;

Expand Down
6 changes: 3 additions & 3 deletions docs/DEV.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# dev
# 开发指南

## 前端

### 主题

前端采用了 tailwindcss 作为样式管理,也提供其默认提供的颜色值
可以使用 bg-palette 调用当前组件的背景色,或是 text-primary 等方式调用指定色盘作为文字的颜色。
前端采用了 tailwindcss 作为样式管理。
可以使用 bg-palette 调用当前组件的背景色,或是 text-primary-fg 等方式调用指定色盘作为文字的颜色。
或是采用 --primary-fg 等 CSS 变量直接赋值。

### 字体
Expand Down

0 comments on commit 8413658

Please sign in to comment.