minor fix

This commit is contained in:
Piyush मिश्रः 2021-05-10 22:19:13 +05:30
parent 6ae223be2a
commit 58d8ddf1f2
2 changed files with 30 additions and 31 deletions

View File

@ -10,6 +10,36 @@
scrollbar-width: auto; scrollbar-width: auto;
} }
:root {
--bg-color: #ffffff;
--bg-secondary-color: #f3f3f6;
--bg-tertiary-color: #cacad8;
--color-primary: #14854F;
--color-lightGrey: #d2d6dd;
--color-border: #d2d6dd;
--color-grey: #747681;
--color-darkGrey: #3f4144;
--color-error: #d43939;
--color-success: #28bd14;
--grid-maxWidth: 120rem;
--grid-gutter: 2rem;
--font-size: 1.8rem;
--font-color: #333333;
--font-family-sans: "Itim";
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
--msg-other-bg-color : rgb(97, 182, 238);
--msg-me-bg-color : rgb(92, 175, 148);
--msg-reply-bg-color : rgb(209, 215, 219);
--msg-other-border-color : rgb(62, 127, 212);
--msg-me-border-color : rgb(64, 148, 116);
--msg-reply-border-color : rgb(94, 100, 105);
--msg-other-border-sel-color : rgb(58, 90, 139);
--msg-me-border-sel-color : rgb(48, 105, 86);
--svg-filter: none;
}
body.dark { body.dark {
--bg-color: rgb(25, 25, 27); --bg-color: rgb(25, 25, 27);
--bg-secondary-color: #1f1f20; --bg-secondary-color: #1f1f20;

View File

@ -4,37 +4,6 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="css/style.css">
<style>
:root {
--bg-color: #ffffff;
--bg-secondary-color: #f3f3f6;
--bg-tertiary-color: #cacad8;
--color-primary: #14854F;
--color-lightGrey: #d2d6dd;
--color-border: #d2d6dd;
--color-grey: #747681;
--color-darkGrey: #3f4144;
--color-error: #d43939;
--color-success: #28bd14;
--grid-maxWidth: 120rem;
--grid-gutter: 2rem;
--font-size: 1.8rem;
--font-color: #333333;
--font-family-sans: "Itim";
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
--msg-other-bg-color : rgb(97, 182, 238);
--msg-me-bg-color : rgb(92, 175, 148);
--msg-reply-bg-color : rgb(209, 215, 219);
--msg-other-border-color : rgb(62, 127, 212);
--msg-me-border-color : rgb(64, 148, 116);
--msg-reply-border-color : rgb(94, 100, 105);
--msg-other-border-sel-color : rgb(58, 90, 139);
--msg-me-border-sel-color : rgb(48, 105, 86);
--svg-filter: none;
}
</style>
<title>Lupt Chat</title> <title>Lupt Chat</title>
</head> </head>
<body> <body>