/* Default light theme */ :root { --background-color: #fff; --text-color: #000; --link-color: #00f; } /* Dark theme */ .dark-theme { --background-color: #282828; --text-color: #ffffff; --link-color: #bb86fc; } body { background-color: var(--background-color); color: var(--text-color); } a { color: var(--link-color); } /* Theme Toggle Positioning */ .theme-toggle { position: fixed; /* Fixed position */ top: 20px; /* Distance from the top */ right: 40px; /* Distance from the right */ z-index: 100; /* Ensure it's above other elements */ /* Other styling properties */ } /* FontAwesome Icons Styling */ .fa { font-size: 30px !important; /* Size of the icons */ transition: all 0.3s; /* Smooth transition for hover effects and theme switching */ } /* Icons within the theme-toggle should be positioned normally, not absolute */ .theme-toggle .fa { position: relative; top: 0; transform: none; } /* Adjust the display of icons based on the theme */ .dark-theme .fa-moon-o { display: block; } .dark-theme .fa-sun-o { display: none; } /* Default display for light theme */ .fa-sun-o { display: block; color: #ffdd57; background-color: #fff; } .fa-moon-o { display: none; color: #fff; }