655
questions
0
votes
0
answers
19
views
Issue with Eclipse dark theme - project and class selection windows stay in light mode
I’m experiencing an issue with the dark theme in in Eclipse 2024-03 after I recently updated my Windows 11 system to the 23H2 version. Before the update, I had no issues with the dark theme, but now ...
0
votes
0
answers
12
views
Does stackexchange have a dark mode view [closed]
I'd like to view this site with a light text on a dark background
I looked for a "hamburger" menu and did not find one. Is there a way to easily do this without having to resort to ...
0
votes
0
answers
18
views
core.mjs:7400 ERROR FirebaseError: Invalid document reference. Document references must have an even number of segments, but Usuario has 1
I am trying to make sure that when I switch to dark mode it is saved in the user with which I logged in and when I log in again with that user it puts me in dark mode again, but I get this error and ...
1
vote
0
answers
20
views
How to edit default colors based on Bootstrap theme?
I want to change variables such as primary, success, body-bg especially for dark and light themes using sass in Bootstrap, but I couldn't find the right way. Can you help?
What I'm trying to do is ...
0
votes
0
answers
39
views
How to include dark and light theme in angular 18
I tried to implement a customer theme for angular and to have the ability to switch between dark and light mode. I tried many solutions but could not find the right way because angular is steadily ...
1
vote
1
answer
52
views
Screen starts off with light or dark mode, and changes to dark or light mode depending on user settings
I am making a light mode and dark mode for my app using data store.
As I open the application, and depending on whether the device is on dark mode, the application starts off with dark mode, and then ...
0
votes
1
answer
53
views
SwiftUI's preferredColorScheme does not work for TabView's Tab Bar
I want to include an app appearance picker in my SwiftUI app. It should let the user choose between
Dark appearance
Light appearance
Respect System setting
I've tried to implement it using the ...
0
votes
0
answers
23
views
Text in Spinner Not Visible After Selection in Dark Mode
I'm a beginner in Android development, and I'm encountering an issue with a Spinner in my Android application. When I switch to dark mode, the text color of the selected item in the Spinner becomes ...
0
votes
0
answers
46
views
Is it possible to customize P4V / P4Merge dark mode theme colors?
My searches haven't turned up anything so far. I'm hoping someone here knows if it is possible and how one might do it. I'm using p4v/p4merge version 2022.3.
As with most people, I was happy when ...
0
votes
0
answers
35
views
useColorScheme works for iOS but not for Android
I have a React Native app on Android and iOS. The code for both apps are the same. I am using useColorScheme from "react-native" to automatically detect the user's light/dark theme and apply ...
0
votes
1
answer
83
views
Vscodium menu entries flashes white in dark mode
Vscodium menu entries flashes white in dark mode. I am using Verision 1.93 under Linux.
This is maybe related to the underlying electron. But maybe someone has a solution for that.
Thanks in advance.
0
votes
0
answers
49
views
mudblazor individual component dark mode c# mudblazor
Because of my dark background mudblazor components 'i.e tables and fields' are almost invisible. I just want them to maintain their white background when on this background. Turned dark mode on to see ...
0
votes
4
answers
67
views
JS function for Darkmode / Lightmode with value checking via Local Storage gives me a quick color change when going on subpages
I would like to add a button for switching to darkmode and lightmode on my website.
I use var()'s in my css to control the color of my elements.
This is my code:
function loadMode() {
const mode = ...
0
votes
0
answers
47
views
Creating a custom color for text-primary in darkmode
I'm pulling my hair out with this. I'm trying to follow the bootstrap docs for version 5.3.3
I've created a custom theme all started off well. Until I hit the dark mode switch. I noticed some of the ...
1
vote
1
answer
46
views
Composable AlertDialog not changing to DarkMode
In my Compose activity, I have following AlertDialog:
AlertDialog(
title = { Text(text = dialogTitle) },
text = { Text(text = dialogDescription) },
confirmButton = {}
)
It looks like this:...