2022-01-24 23:11:35 +01:00
|
|
|
|
|
|
|
:root {
|
|
|
|
--color-brand: #546de5;
|
|
|
|
--color-sidebar-collection-item-focused-indent-border: #7b8de3;
|
|
|
|
--color-sidebar-background: #f6f8fa;
|
|
|
|
--color-request-dragbar-background: #e2e2e2;
|
|
|
|
--color-tab-active-border: #4d4d4d;
|
|
|
|
--color-layout-border: #dedede;
|
|
|
|
--color-codemirror-border: #efefef;
|
|
|
|
--color-codemirror-background: #f6f8fa;
|
|
|
|
}
|
|
|
|
|
2021-12-03 20:37:38 +01:00
|
|
|
html, body {
|
2021-12-03 19:04:48 +01:00
|
|
|
margin: 0;
|
2021-12-03 20:37:38 +01:00
|
|
|
padding: 0;
|
|
|
|
font-size: 1rem;
|
2021-12-30 15:12:04 +01:00
|
|
|
color: rgb(48 48 48);
|
2021-12-03 19:04:48 +01:00
|
|
|
|
2021-12-03 20:37:38 +01:00
|
|
|
font-kerning: none;
|
|
|
|
text-rendering: optimizeSpeed;
|
|
|
|
letter-spacing: normal;
|
|
|
|
/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"; */
|
|
|
|
font-family: Inter, sans-serif !important;
|
2021-12-03 19:04:48 +01:00
|
|
|
}
|
|
|
|
|
2021-12-03 20:37:38 +01:00
|
|
|
body {
|
|
|
|
font-size: 0.875rem;
|
2022-01-22 17:06:28 +01:00
|
|
|
}
|
|
|
|
|
2022-01-24 23:11:35 +01:00
|
|
|
body::-webkit-scrollbar, .CodeMirror-vscrollbar::-webkit-scrollbar {
|
|
|
|
width: 0.6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
body::-webkit-scrollbar-track, .CodeMirror-vscrollbar::-webkit-scrollbar-track {
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
body::-webkit-scrollbar-thumb, .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #cdcdcd;
|
|
|
|
border-radius: 5rem;
|
2021-12-03 20:37:38 +01:00
|
|
|
}
|