:root {
font-family: "Hanyi Tang Meiren" !important; /* Font */
}
/* Deep thinking expanded font color */
.ant-collapse-content-box .markdown {
color: red;
}
/* Theme variables */
:root {
--color-black-soft: #2a2b2a; /* Dark background color */
--color-white-soft: #f8f7f2; /* Light background color */
}
/* Dark theme */
body[theme-mode="dark"] {
/* Colors */
--color-background: #2b2b2b; /* Dark background color */
--color-background-soft: #303030; /* Light background color */
--color-background-mute: #282c34; /* Neutral background color */
--navbar-background: var(-–color-black-soft); /* Navbar background color */
--chat-background: var(–-color-black-soft); /* Chat background color */
--chat-background-user: #323332; /* User chat background color */
--chat-background-assistant: #2d2e2d; /* Assistant chat background color */
}
/* Dark theme specific styles */
body[theme-mode="dark"] {
#content-container {
background-color: var(-–chat-background-assistant) !important; /* Content container background color */
}
#content-container #messages {
background-color: var(-–chat-background-assistant); /* Message background color */
}
.inputbar-container {
background-color: #3d3d3a; /* Input box background color */
border: 1px solid #5e5d5940; /* Input box border color */
border-radius: 8px; /* Input box border radius */
}
/* Code styles */
code {
background-color: #e5e5e20d; /* Code background color */
color: #ea928a; /* Code text color */
}
pre code {
color: #abb2bf; /* Preformatted code text color */
}
}
/* Light theme */
body[theme-mode="light"] {
/* Colors */
--color-white: #ffffff; /* White */
--color-background: #ebe8e2; /* Light background color */
--color-background-soft: #cbc7be; /* Light background color */
--color-background-mute: #e4e1d7; /* Neutral background color */
--navbar-background: var(-–color-white-soft); /* Navbar background color */
--chat-background: var(-–color-white-soft); /* Chat background color */
--chat-background-user: #f8f7f2; /* User chat background color */
--chat-background-assistant: #f6f4ec; /* Assistant chat background color */
}
/* Light theme specific styles */
body[theme-mode="light"] {
#content-container {
background-color: var(-–chat-background-assistant) !important; /* Content container background color */
}
#content-container #messages {
background-color: var(-–chat-background-assistant); /* Message background color */
}
.inputbar-container {
background-color: #ffffff; /* Input box background color */
border: 1px solid #87867f40; /* Input box border color */
border-radius: 8px; /* Input box border radius — change to the size you prefer */
}
/* Code styles */
code {
background-color: #3d39290d; /* Code background color */
color: #7c1b13; /* Code text color */
}
pre code {
color: #000000; /* Preformatted code text color */
}
}