2022-01-24 23:11:35 +01:00
|
|
|
|
|
|
|
:root {
|
|
|
|
--color-brand: #546de5;
|
2022-01-31 06:06:29 +01:00
|
|
|
--color-sidebar-collection-item-active-indent-border: #d0d0d0;
|
|
|
|
--color-sidebar-collection-item-active-background: #dddddd;
|
2022-03-14 22:19:14 +01:00
|
|
|
--color-sidebar-background: #f3f3f3;
|
2022-01-24 23:11:35 +01:00
|
|
|
--color-request-dragbar-background: #e2e2e2;
|
2022-01-26 11:04:46 +01:00
|
|
|
--color-request-dragbar-background-active: #bbb;
|
2022-01-24 23:11:35 +01:00
|
|
|
--color-tab-active-border: #4d4d4d;
|
|
|
|
--color-layout-border: #dedede;
|
|
|
|
--color-codemirror-border: #efefef;
|
2022-01-31 06:06:29 +01:00
|
|
|
--color-codemirror-background: rgb(243, 243, 243);
|
2022-03-07 15:32:39 +01:00
|
|
|
--color-text-link: #1663bb;
|
2022-03-18 20:35:43 +01:00
|
|
|
--color-text-danger: rgb(185, 28, 28);
|
|
|
|
--color-background-danger: #dc3545;
|
2022-03-14 21:28:26 +01:00
|
|
|
--color-method-get: rgb(5, 150, 105);
|
|
|
|
--color-method-post: #8e44ad;
|
|
|
|
--color-method-put: #8e44ad;
|
|
|
|
--color-method-delete: #8e44ad;
|
|
|
|
--color-method-patch: #8e44ad;
|
2022-03-15 21:18:33 +01:00
|
|
|
--color-table-stripe: #f3f3f3;
|
2022-01-24 23:11:35 +01:00
|
|
|
}
|
|
|
|
|
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;
|
2022-03-19 17:16:30 +01:00
|
|
|
color: rgb(52 52 52);
|
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: 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
|
|
|
}
|