Hahaha Glad you liked it! Although I wanted the code to look simple, I knew that anyone who wanted to do this in their website would eventually have to manage their states.
Sometimes I think u keep a track of what should I learn next... 😜thanks for the video brother you never disappoint... highly appreciate your quality work and love from India ❤️❤️
The fact you got Copilot running helps it to be more approachable. I can't live without it, so it's astonishing there's a dev with more experience who also uses it. Thank you!
One of the best solution to change the styles of different components according to the theme is by using css custom properties and just change those custom property according to theme and it will be reflected to the whole website. Hope this helps 😌😌
I suggest putting colors into CSS variables and make two sets of those vars - for a light and a dark theme. It would spare you rewriting styles for all elements.
Good video. I am just thinking the context is not necessary in this example. The state is already enough. Maybe you should expand the example to include the usage of context
The way ive been doing dark mode now is setting default color variables in my root CSS. Then i change the value of those root css variables for each theme. Then it's easy to add more themes later since every component will use color: var(--buttonColor1) You just keep redefining --buttonColor1
I guess you can use inline styling, pre-set from the JS itself (or if you generate your page on a server, make the algorithm generating the code to also include that styling on it). It wouldn't affect performance since styling is quite lowweight, compared to a database request which could lag your page quite much more.
I wanna answer because i change css var() in the index with document.document.element.style.setProperty and use a toggle to make theme change and i wanna know if that is right
That was awesome ! But I encountered a problem . How can i toggle it using a component which is inside a header that his inside tha app.js . I don't know how to do it I'm totally new .
nice video i learn a lot from it but i have one problem that i struggle and cant pass it even with stackoverflow, ai etc. help. so basically i need to put my reactswitch in exactly position in but how to make it funcional to toggle in header has a funcionality in the whole app.jsx. if anyone has some solution for it i ll be very thankfull :D
This isn't ideal, instead of doing multiple background colors, just create some css variables and change their values depending on light or dark mode. I feel like it would be better, and easier to understand.
I use javascript for personal projects, but why would i ignore most of the beginner developers who still haven't learned typescript? My channel isn't just for me, its for my viewers. I do prefer to code with typescript, but I have to think about my subscribers who don't know it.
Man this is catching 2 birds with 1 stone basically explaining contextApi and toggle .Bless you man
Hahaha Glad you liked it! Although I wanted the code to look simple, I knew that anyone who wanted to do this in their website would eventually have to manage their states.
Sempre com videos práticos e direto ao ponto. Valeu, Pedro!
At the right time pedro 🙂, I was thinking of it and then your video pops up.
This will help me a lot.
Thanks man!!
Glad to hear it!
Man your recent uploads have been good! Exactly what I want! Keep it up!
Hahaha I've been doubling my time with each video! Glad you are liking them :)
Dont worry bro. The explanation was pretty clear. We don't have any idea how cool you really are. Thanks 🙏
You are my favorite coder-teacher-youtuber.
Sometimes I think u keep a track of what should I learn next... 😜thanks for the video brother you never disappoint... highly appreciate your quality work and love from India ❤️❤️
Hahaha glad to hear it! I always try to follow recommendations from my subs :)
Dont stop uploading , i love your videos ! thank you !!
The best react channel.
Thank You :)
the editing of your videos has improved so much!
The fact you got Copilot running helps it to be more approachable. I can't live without it, so it's astonishing there's a dev with more experience who also uses it. Thank you!
Hopefully this isn't still true for you.
Thank you so much Pedro! you went straight to the point and explained everything pretty easy!
Can u please make a video explaining how to record an audio and storing into firestore??Would appreciate that!
Love the content
Exactly we needed it much ! thanks Pedro
Css variables work like charm for theme modes
One of the best solution to change the styles of different components according to the theme is by using css custom properties and just change those custom property according to theme and it will be reflected to the whole website.
Hope this helps 😌😌
can you expand on this please? or did you have any exmaples of code
Great!…as always!…
Perdo, you have become my best resource to learn React 👋👋🙋♂🙋♂💪💪🔥🔥
That was fire! Super efficient and definitely using SCSS with it helped a bit, organizing. Definitely subscribing!
Nice ✌🏻this is very helpful
Very useful video... Good stuff man
Great tutorial. This helped me to quickly build dark theme for my react application
Pretty easy and much more flexible with Mui as you won't need to keep record of each element id or classes and manage their styles individually.
This was really helpful, thank you for the video!
I suggest putting colors into CSS variables and make two sets of those vars - for a light and a dark theme. It would spare you rewriting styles for all elements.
DAMN Pedro! This was a dope tutorial. Thank you so much!
Hey there, wanted to ask,
If we have multiple pages in a webpage, How to convert that entirely ??
Hi, thanks for the help, if anyone's background color is not dynamic, check your root in css, that's probably the problem.
Mate... Awesome tutorial, keep up with the content!
Thanks pedro! I really liked your explanation.
You can just use setTheme(!theme) inside your toggleTheme function, right?
Thanks a lot for this video!! I'm really happy to do it so quickly 😍
Wonderful and entertaining as well as informative video I just enjoyed watching.
Intro 🔥
God bless you!!
Please if I want the toggle to be an image like a sun ☀️ for light and moon 🌙 for dark how can I do that
Good video. I am just thinking the context is not necessary in this example. The state is already enough. Maybe you should expand the example to include the usage of context
The way ive been doing dark mode now is setting default color variables in my root CSS.
Then i change the value of those root css variables for each theme.
Then it's easy to add more themes later since every component will use color: var(--buttonColor1)
You just keep redefining --buttonColor1
Your videos are so good. Thank you, man
Awesome video!
I do think that using SCSS would make things a little bit cleaner.
cheers 👌👌
You are incredible ^^ thank you for this valuable content
That's great, but if we purge our CSS to increase performance of website? We will no longer have access to styling in the opposite mode.
I guess you can use inline styling, pre-set from the JS itself (or if you generate your page on a server, make the algorithm generating the code to also include that styling on it). It wouldn't affect performance since styling is quite lowweight, compared to a database request which could lag your page quite much more.
Thank you! It will help me so much!
I wanna answer because i change css var() in the index with document.document.element.style.setProperty and use a toggle to make theme change and i wanna know if that is right
If it works then you can do that, although I would avoid accessing the document in react
i have a question. how can you make the animation for the switch. i've tried many ways but it didn't work
Great tutorial. Subscribed.
Thanks Pedro! That was very helpful. How can I save the theme on localStorage in order to save the user's preference?
Perfect video! Thanks!!
Toggle is resetting or triggering twice for some reason! Why!
Great Video! very helpful
how can I change body background color depending on theme?
how can i change the size and height if i use media query? className doesnt work to react-switch
Hey! Pedro, you mind doing a video with golang as backend and react as frontend with SQL database??
That was awesome ! But I encountered a problem . How can i toggle it using a component which is inside a header that his inside tha app.js . I don't know how to do it I'm totally new .
How do I deploy a full stack meen app for free? Like a college project? Any free solution? Ik GPages for react but what about server
é brasileiro esse pedro ai? parabens pela coragem
how to do same thing using styled component
I definitely can :) With styled components it would be even easier hahaha
@@PedroTechnologies Waiting for that video bro😍😍
Nice 😎👍
thank man really appreciate it
hey can you please make a seperate video form storing user details along with files like image and pdf in mongoDB(MERN).
👏saved my time💪
which theme do u use?
Perfect job, thanks....
how would I pass the themes to other components?
How to make this using CSS modules instead of global CSS like in the video?
Thank you so much!
Please create Next.js/REST API/Typescript/Tailwind CSS/Prisma/PostgreSQL stack for next project
Mano seu inglês é absurdo de bom
But how do I save the theme to localStorage using useEffect hook?
same question
ty that was helpful
redux toolkit , redux thunk complete video please .. 🙏😅
If you refresh the page in dark mode in your example, it will turn it back to light mode
It doesn't work when I try to put the button in my navbar
nice video i learn a lot from it but i have one problem that i struggle and cant pass it even with stackoverflow, ai etc. help.
so basically i need to put my reactswitch in exactly position in but how to make it funcional to toggle in header has a funcionality in the whole app.jsx. if anyone has some solution for it i ll be very thankfull :D
Bom vídeo. VAI BRASIL!
Man I was working on this for so many hours... I just had some CSS syntax wrong the whole time. Dear lord I'm sad
thank you
Why my children components not affecting to dark mode? Anyone can help me plzz?
tnxxx🥰
Thanks
This isn't ideal, instead of doing multiple background colors, just create some css variables and change their values depending on light or dark mode.
I feel like it would be better, and easier to understand.
11:04 to add switch
It's a purple mode
10:04
what is life
Im really sorry, couldn't finish the video
Dude!!!, Start using typescript, this is ugly🤢
I use javascript for personal projects, but why would i ignore most of the beginner developers who still haven't learned typescript? My channel isn't just for me, its for my viewers. I do prefer to code with typescript, but I have to think about my subscribers who don't know it.
Very helpful for beginners! Thanks 🙏🙏🙏
youre awesome bro!!!! get a discord or telegra, channel love to chat with ya! thanks again!
Hey! Pedro, you mind doing a video with golang as backend and react as frontend with SQL database??