mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
52 lines
1.1 KiB
CSS
52 lines
1.1 KiB
CSS
:root {
|
|
--bg-dark: #0c0e10;
|
|
--bg-light: #292929;
|
|
--bg-input: #393939;
|
|
--bg-workspace: #1f2228;
|
|
--border: #3c3c4a;
|
|
--text-editor-base: #9099AC;
|
|
--text-editor-active:#C4CBDA;
|
|
--bg-editor-sidebar: #24272E;
|
|
--bg-editor-active: #31343D;
|
|
--border-editor-sidebar: #3C3C4A;
|
|
background-color: var(--neutral-900) !important;
|
|
--bg-neutral-muted: #afb8c133;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, "SF Pro", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
monospace;
|
|
}
|
|
|
|
.markdown-body code {
|
|
padding: 0.2em 0.4em;
|
|
margin: 0;
|
|
font-size: 85%;
|
|
white-space: break-spaces;
|
|
background-color: var(--bg-neutral-muted);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.markdown-body pre code {
|
|
padding: 0;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.markdown-body {
|
|
white-space: pre-wrap; /* Handles line breaks */
|
|
}
|
|
|
|
.markdown-body ul {
|
|
list-style-type: disc; /* Handles bullet points */
|
|
margin-left: 20px;
|
|
}
|