|
|
|
|
@ -1,12 +1,81 @@
|
|
|
|
|
:root {
|
|
|
|
|
:root[theme="light"] {
|
|
|
|
|
--background: #fff;
|
|
|
|
|
--text: rgb(45, 45, 45);
|
|
|
|
|
--box-main: #eef4f3;
|
|
|
|
|
--box-toggle: rgb(215 238 233);
|
|
|
|
|
--box-toggleOn: rgb(28 232 138);
|
|
|
|
|
--item-bg: #dddddd;
|
|
|
|
|
--box-shadow: none;
|
|
|
|
|
--select: rgb(127, 253, 127);
|
|
|
|
|
--greenBtn: #6ade1d;
|
|
|
|
|
--greenBtn-bottom: #54a31f;
|
|
|
|
|
--redBtn: #d64d4f;
|
|
|
|
|
--redBtn-bottom: #854243;
|
|
|
|
|
--blueBtn: rgb(80, 128, 230);
|
|
|
|
|
--blueBtn-bottom: rgb(44, 78, 180);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root[theme="dark"] {
|
|
|
|
|
--background: rgb(40, 40, 40);
|
|
|
|
|
--text: white;
|
|
|
|
|
--box-main: rgb(80, 80, 80);
|
|
|
|
|
--box-toggle: rgb(70, 70, 70);
|
|
|
|
|
--box-toggleOn: rgb(28 232 138);
|
|
|
|
|
--theme-toggle: rgb(80, 193, 238);
|
|
|
|
|
--item-bg: rgb(75, 75, 75);
|
|
|
|
|
--box-shadow: none;
|
|
|
|
|
--select: rgb(127, 253, 127);
|
|
|
|
|
--greenBtn: #6acd29;
|
|
|
|
|
--greenBtn-bottom: #4c8824;
|
|
|
|
|
--redBtn: #d64d4f;
|
|
|
|
|
--redBtn-bottom: #854243;
|
|
|
|
|
--blueBtn: rgb(80, 128, 230);
|
|
|
|
|
--blueBtn-bottom: rgb(44, 78, 180);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root[theme="frappe"] {
|
|
|
|
|
--background: #232634;
|
|
|
|
|
--text: #c6d0f5;
|
|
|
|
|
--box-main: #303446;
|
|
|
|
|
--box-toggle: #414559;
|
|
|
|
|
--box-toggleOn: #607dc1;
|
|
|
|
|
--item-bg: #414559;
|
|
|
|
|
--select: #8caaee;
|
|
|
|
|
--greenBtn: #78c346;
|
|
|
|
|
--greenBtn-bottom: #597844;
|
|
|
|
|
--redBtn: #d64d4f;
|
|
|
|
|
--redBtn-bottom: #854243;
|
|
|
|
|
--blueBtn: rgb(80, 128, 230);
|
|
|
|
|
--blueBtn-bottom: rgb(44, 78, 180);
|
|
|
|
|
}
|
|
|
|
|
:root[theme="onedark"] {
|
|
|
|
|
--background: #282C34 ;
|
|
|
|
|
--text: #d2d6df;
|
|
|
|
|
--box-main: #4D515D;
|
|
|
|
|
--box-toggle: #2F333D;
|
|
|
|
|
--box-toggleOn: #13a3b7;
|
|
|
|
|
--item-bg: #4D515D;
|
|
|
|
|
--select: #57b6c2;
|
|
|
|
|
--greenBtn: #85cf50;
|
|
|
|
|
--greenBtn-bottom: #406923;
|
|
|
|
|
--redBtn: #be2d39;
|
|
|
|
|
--redBtn-bottom: #791a22;
|
|
|
|
|
--blueBtn: rgb(80, 128, 230);
|
|
|
|
|
--blueBtn-bottom: rgb(44, 78, 180);
|
|
|
|
|
}
|
|
|
|
|
:root[theme="matrix"] {
|
|
|
|
|
--background: #0D0208;
|
|
|
|
|
--text: #00FF41;
|
|
|
|
|
--box-main: #0c2216;
|
|
|
|
|
--box-toggle: #214338;
|
|
|
|
|
--box-toggleOn: #24782e;
|
|
|
|
|
--item-bg: #214338;
|
|
|
|
|
--select: #00FF41;
|
|
|
|
|
--greenBtn: #19b42b;
|
|
|
|
|
--greenBtn-bottom: #10701c;
|
|
|
|
|
--redBtn: #19b42b;
|
|
|
|
|
--redBtn-bottom: #10701c;
|
|
|
|
|
--blueBtn: #19b42b;
|
|
|
|
|
--blueBtn-bottom: #10701c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
@ -84,6 +153,18 @@ body {
|
|
|
|
|
z-index: 2;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#themeToggle {
|
|
|
|
|
backdrop-filter: blur(16px) saturate(160%);
|
|
|
|
|
-webkit-backdrop-filter: blur(16px) saturate(160%);
|
|
|
|
|
background-color: rgb(17, 25, 40);
|
|
|
|
|
color:white;
|
|
|
|
|
padding:10px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
outline: none;
|
|
|
|
|
border:none;
|
|
|
|
|
font-size: large;
|
|
|
|
|
}
|
|
|
|
|
.menuItem {
|
|
|
|
|
color: white;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
@ -142,9 +223,11 @@ body {
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
width: 45%;
|
|
|
|
|
width: 50%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: rgb(127, 253, 127);
|
|
|
|
|
background-color: var(--box-toggle);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-size: large;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemTitle {
|
|
|
|
|
@ -221,6 +304,7 @@ body {
|
|
|
|
|
#options {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
@ -253,11 +337,11 @@ body {
|
|
|
|
|
background-color: var(--box-toggleOn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
padding: 15px;
|
|
|
|
|
background-color: rgb(127, 253, 127);
|
|
|
|
|
.select {
|
|
|
|
|
padding: 12px 15px;
|
|
|
|
|
background-color: var(--select);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: large;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
@ -290,10 +374,10 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
|
|
.submitBtn {
|
|
|
|
|
padding: 15px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background-color: rgb(4, 207, 21);
|
|
|
|
|
background-color: var(--greenBtn);
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: 5.5px solid rgb(11, 158, 11);
|
|
|
|
|
border-bottom: 5.5px solid var(--greenBtn-bottom);
|
|
|
|
|
font-size: large;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
@ -335,7 +419,7 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#incorrectMsg {
|
|
|
|
|
color: rgb(237, 67, 67);
|
|
|
|
|
color: var(--redBtn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#errorBtn {
|
|
|
|
|
@ -373,29 +457,6 @@ svg {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#themeToggle {
|
|
|
|
|
width: 55px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
background-color: var(--theme-toggle);
|
|
|
|
|
border-radius: 40px;
|
|
|
|
|
display: flex;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: linear;
|
|
|
|
|
transition-duration: 0.4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#themeToggleInside {
|
|
|
|
|
background-color: rgb(255, 255, 255);
|
|
|
|
|
border-radius: 30px;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
margin: 4px;
|
|
|
|
|
position: relative;
|
|
|
|
|
transition: linear;
|
|
|
|
|
transition-duration: 0.4s;
|
|
|
|
|
left: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.savedMsg {
|
|
|
|
|
color: rgb(52, 170, 234);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
@ -409,9 +470,9 @@ button {
|
|
|
|
|
|
|
|
|
|
#extractBtn {
|
|
|
|
|
color: white;
|
|
|
|
|
background-color: rgb(80, 128, 230);
|
|
|
|
|
background-color: var(--blueBtn);
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: 4px solid rgb(44, 78, 180);
|
|
|
|
|
border-bottom: 4px solid var(--blueBtn-bottom);
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
@ -428,9 +489,9 @@ button {
|
|
|
|
|
|
|
|
|
|
.advancedToggle {
|
|
|
|
|
color: white;
|
|
|
|
|
background-color: rgb(217, 68, 68);
|
|
|
|
|
background-color: var(--redBtn);
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: 5px solid rgb(180, 49, 49);
|
|
|
|
|
border-bottom: 5px solid var(--redBtn-bottom);
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|