diff options
author | sameerasw <[email protected]> | 2025-02-26 17:20:26 +0530 |
---|---|---|
committer | sameerasw <[email protected]> | 2025-02-26 17:20:26 +0530 |
commit | fc4ec05cf405e44febc15cf1c37a08c7a7bbcfb4 (patch) | |
tree | c4056cd4eb452c579688b827481fa26c75e4084e /shared | |
parent | 8ad5353bf3f698ec8653ec97e9da66ae58536b0a (diff) |
Code cleanup
Diffstat (limited to 'shared')
-rw-r--r-- | shared/constants.js | 2 | ||||
-rw-r--r-- | shared/variables.css | 41 |
2 files changed, 1 insertions, 42 deletions
diff --git a/shared/constants.js b/shared/constants.js index 92eb2fd..dd00e68 100644 --- a/shared/constants.js +++ b/shared/constants.js @@ -1 +1 @@ -export const BROWSER_STORAGE_KEY = "transparentZenSettings";
\ No newline at end of file +export const BROWSER_STORAGE_KEY = "zneInternetSettings";
\ No newline at end of file diff --git a/shared/variables.css b/shared/variables.css deleted file mode 100644 index 8f48cb2..0000000 --- a/shared/variables.css +++ /dev/null @@ -1,41 +0,0 @@ -:root {
- --color-primary: #82c7ff;
- --color-secondary: orange;
- --color-tertiary: blueviolet;
- --color-link-visited: #9ea2ff;
- --color-text: var(--color-white);
- --color-text-alt: #2b2b2b;
- --color-bg: var(--color-white);
- --color-bg-alt: #efefef;
-
- --color-white: #fff;
- --color-grey: #b9b9b9;
- --color-black: #111;
- --color-black-deep: #000;
- --color-black-light: #222;
-
- --color-green: mediumseagreen;
- --color-red: indianred;
- --color-orange: darkorange;
- --color-blue: deepskyblue;
-
- --transparent-background: rgb(from var(--color-bg) r g b / 0.5);
- --transparent-background-dark: rgb(from var(--color-bg) r g b / 0.75);
- --transparent-background-darker: rgb(from var(--color-bg) r g b / 0.9);
- --transparent-text: rgb(from var(--color-text) r g b / 0.5);
- --transparent-primary: rgb(from var(--color-primary) r g b / 0.5);
- --gradient: linear-gradient(20deg, var(--color-primary), var(--color-tertiary));
- --gradient-reverse: linear-gradient(200deg, var(--color-primary), var(--color-tertiary));
- --border-radius: 5px;
- --border-radius-lg: 8px;
- --backdrop-blur: blur(8px);
-}
-
-@media (prefers-color-scheme: dark) {
- :root {
- --color-bg: var(--color-black);
- --color-bg-alt: var(--color-black-light);
- --color-text: var(--color-white);
- --color-text-alt: var(--color-grey);
- }
-}
|