docs: add upage usage instructions document

This commit is contained in:
LIlGG
2025-09-28 18:01:20 +08:00
parent cf35ba7399
commit 1d944e54e8
11 changed files with 130 additions and 102 deletions

View File

@@ -28,3 +28,25 @@
--ifm-color-primary-lightest: #bcc2e5;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
/* 为 API KEY 和 BASE URL 添加不同的颜色样式 */
/* 红色,表示 API KEY */
.api-key-highlight {
color: #e53935;
font-weight: bold;
}
/* 蓝色,表示 BASE URL */
.base-url-highlight {
color: #2196f3;
font-weight: bold;
}
/* 暗色模式下的颜色调整 */
[data-theme="dark"] .api-key-highlight {
color: #ff7961;
}
[data-theme="dark"] .base-url-highlight {
color: #64b5f6;
}