:root {
font-family: "漢儀唐美人" !important; /* 字體 */
}
/* 深度思考展開字體顏色 */
.ant-collapse-content-box .markdown {
color: red;
}
/* 主題變量 */
:root {
--color-black-soft: #2a2b2a; /* 深色背景色 */
--color-white-soft: #f8f7f2; /* 淺色背景色 */
}
/* 深色主題 */
body[theme-mode="dark"] {
/* Colors */
--color-background: #2b2b2b; /* 深色背景色 */
--color-background-soft: #303030; /* 淺色背景色 */
--color-background-mute: #282c34; /* 中性背景色 */
--navbar-background: var(-–color-black-soft); /* 導航欄背景色 */
--chat-background: var(–-color-black-soft); /* 聊天背景色 */
--chat-background-user: #323332; /* 用戶聊天背景色 */
--chat-background-assistant: #2d2e2d; /* 助手聊天背景色 */
}
/* 深色主題特定樣式 */
body[theme-mode="dark"] {
#content-container {
background-color: var(-–chat-background-assistant) !important; /* 內容容器背景色 */
}
#content-container #messages {
background-color: var(-–chat-background-assistant); /* 訊息背景色 */
}
.inputbar-container {
background-color: #3d3d3a; /* 輸入框背景色 */
border: 1px solid #5e5d5940; /* 輸入框邊框顏色 */
border-radius: 8px; /* 輸入框邊框圓角 */
}
/* 代碼樣式 */
code {
background-color: #e5e5e20d; /* 代碼背景色 */
color: #ea928a; /* 代碼文字顏色 */
}
pre code {
color: #abb2bf; /* 預格式化代碼文字顏色 */
}
}
/* 淺色主題 */
body[theme-mode="light"] {
/* Colors */
--color-white: #ffffff; /* 白色 */
--color-background: #ebe8e2; /* 淺色背景色 */
--color-background-soft: #cbc7be; /* 淺色背景色 */
--color-background-mute: #e4e1d7; /* 中性背景色 */
--navbar-background: var(-–color-white-soft); /* 導航欄背景色 */
--chat-background: var(-–color-white-soft); /* 聊天背景色 */
--chat-background-user: #f8f7f2; /* 用戶聊天背景色 */
--chat-background-assistant: #f6f4ec; /* 助手聊天背景色 */
}
/* 淺色主題特定樣式 */
body[theme-mode="light"] {
#content-container {
background-color: var(-–chat-background-assistant) !important; /* 內容容器背景色 */
}
#content-container #messages {
background-color: var(-–chat-background-assistant); /* 訊息背景色 */
}
.inputbar-container {
background-color: #ffffff; /* 輸入框背景色 */
border: 1px solid #87867f40; /* 輸入框邊框顏色 */
border-radius: 8px; /* 輸入框邊框圓角,修改為您鍾意嘅大小 */
}
/* 代碼樣式 */
code {
background-color: #3d39290d; /* 代碼背景色 */
color: #7c1b13; /* 代碼文字顏色 */
}
pre code {
color: #000000; /* 預格式化代碼文字顏色 */
}
}