mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
Co-authored-by: Mislav Lukach <mislavlukach@gmail.com> Co-authored-by: Hiep Le <69354317+hieptl@users.noreply.github.com> Co-authored-by: hieptl <hieptl.developer@gmail.com> Co-authored-by: openhands <openhands@all-hands.dev>
69 lines
1.6 KiB
CSS
69 lines
1.6 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Outfit:wght@100..900&display=swap');
|
|
|
|
: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(--base) !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: #2a3038;
|
|
border-radius: 4px;
|
|
color: #e6edf3;
|
|
border: 1px solid #30363d;
|
|
letter-spacing: -0.2px;
|
|
}
|
|
|
|
.markdown-body pre code {
|
|
padding: 0;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.markdown-body {
|
|
white-space: pre-wrap; /* Handles line breaks */
|
|
}
|
|
|
|
.markdown-body th {
|
|
text-align: left;
|
|
}
|
|
|
|
.markdown-body th,
|
|
.markdown-body td {
|
|
padding: 0.1rem 1rem;
|
|
}
|
|
|
|
/* Fast smooth scrolling for chat interface */
|
|
.fast-smooth-scroll {
|
|
scroll-behavior: smooth;
|
|
scroll-timeline: 100ms;
|
|
}
|