remove duplicate css vars (#95)

This commit is contained in:
Red J Adaya 2024-07-05 00:04:59 +08:00 committed by GitHub
parent 449f8bf7ef
commit cbd8512ed6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,10 +2,6 @@
// SPDX-License-Identifier: Apache-2.0
:root {
/* base fonts */
--markdown-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji";
--main-text-color: #f7f7f7;
--title-font-size: 18px;
--secondary-text-color: rgb(195, 200, 194);
@ -27,6 +23,7 @@
--scrollbar-background-color: var(--main-bg-color);
--scrollbar-thumb-color: rgba(255, 255, 255, 0.3);
--scrollbar-thumb-hover-color: rgba(255, 255, 255, 0.5);
--scrollbar-thumb-active-color: rgba(255, 255, 255, 0.6);
--tab-green: rgb(88, 193, 66);
@ -34,14 +31,8 @@
--zindex-header-hover: 100;
--zindex-termstickers: 20;
/* scrollbar colors */
--app-text-primary-color: rgb(255, 255, 255);
--scrollbar-background-color: var(--app-bg-color);
--scrollbar-thumb-color: rgba(255, 255, 255, 0.3);
--scrollbar-thumb-hover-color: rgba(255, 255, 255, 0.5);
--scrollbar-thumb-active-color: rgba(255, 255, 255, 0.6);
/* global colors */
--app-text-primary-color: rgb(255, 255, 255);
--app-text-color: rgb(211, 215, 207);
--app-border-color: rgb(51, 51, 51);
--app-panel-bg-color-dev: rgb(21, 23, 48);