This repository has no description
1:root {
2 --navbar-bg: #ffffff;
3 --navbar-text: #000000;
4 --button-bg: #3B9AF8;
5 --button-bg-rgb: 59, 154, 248; /* RGB version for transparency */
6 --button-text: #ffffff;
7 --background: #f0f0f0;
8 --text: #000000;
9 --card-border: #ddd; /* New variable for card borders */
10 --circular-logo-text: #004f84; /* Default light mode color */
11 /* Add more variables as needed */
12}
13
14.dark-mode {
15 --navbar-bg: #1f1f1f;
16 --navbar-text: #f5f5f5;
17 --button-bg: #3b9af8;
18 --button-bg-rgb: 59, 154, 248; /* RGB version for transparency */
19 --button-text: #f5f5f5;
20 --background: #181818;
21 --text: #ffffff;
22 --card-border: #333333; /* Darker border for dark mode */
23 --circular-logo-text: #ffffff98; /* Default dark mode color */
24}
25
26.light-mode {
27 --navbar-bg: #ffffff;
28 --navbar-text: #000000;
29 --button-bg: #3B9AF8;
30 --button-bg-rgb: 59, 154, 248; /* RGB version for transparency */
31 --button-text: #ffffff;
32 --background: #f0f0f0;
33 --text: #000000;
34 --card-border: #ddd; /* Same as root for light mode */
35}