🎨 UI update, moved POST request parameter section to Request section

This commit is contained in:
Liyas Thomas
2019-09-20 18:34:42 +05:30
parent e764df0687
commit df8d176a34
9 changed files with 92 additions and 88 deletions

View File

@@ -7,36 +7,42 @@
// Dark is the default theme variant.
:root {
--bg-dark-color: #1d1f27;
// Dark Background color
--bg-dark-color: rgb(41, 42, 45);
// Background color
--bg-color: #282a36;
--bg-color: rgb(37, 38, 40);
// Auto-complete color
--atc-color: #20212b;
--atc-color: rgb(49, 49, 55);
// Text color
--fg-color: #c4c6d4;
--fg-color: rgb(247, 248, 248);
// Light Text color
--fg-light-color: rgb(150, 155, 160);
// Border color
--brd-color: #333545;
--brd-color: rgb(48, 47, 55);
// Error color
--err-color: #303341;
// Active color
--err-color: rgb(41, 42, 45);
// Acent color
--ac-color: #50fa7b;
// Active text color
--act-color: #282a36;
--act-color: rgb(37, 38, 40);
}
:root.light {
--bg-dark-color: #7a7a7a;
// Dark Background color
--bg-dark-color: #e8f0fe;
// Background color
--bg-color: #fff;
// Auto-complete color
--atc-color: #ebebeb;
// Text color
--fg-color: #525252;
// Light Text color
--fg-light-color: rgb(150, 155, 160);
// Border color
--brd-color: #f2f2f2;
// Error color
--err-color: invert(#303341, 1);
// Active color
// Acent color
--ac-color: #57b5f9;
// Active text color
--act-color: #fff;