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.
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!
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 ❤️❤️
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.
You are my favorite coder-teacher-youtuber.
Dont worry bro. The explanation was pretty clear. We don't have any idea how cool you really are. Thanks 🙏
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 :)
the editing of your videos has improved so much!
Sempre com videos práticos e direto ao ponto. Valeu, Pedro!
Dont stop uploading , i love your videos ! thank you !!
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.
The best react channel.
Thank You :)
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!
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 :)
Css variables work like charm for theme modes
Exactly we needed it much ! thanks Pedro
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
Hey there, wanted to ask,
If we have multiple pages in a webpage, How to convert that entirely ??
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.
You can just use setTheme(!theme) inside your toggleTheme function, right?
Thank you so much Pedro! you went straight to the point and explained everything pretty easy!
Perdo, you have become my best resource to learn React 👋👋🙋♂🙋♂💪💪🔥🔥
Nice ✌🏻this is very helpful
Very useful video... Good stuff man
Hi, thanks for the help, if anyone's background color is not dynamic, check your root in css, that's probably the problem.
Great!…as always!…
Can u please make a video explaining how to record an audio and storing into firestore??Would appreciate that!
Love the content
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
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
i have a question. how can you make the animation for the switch. i've tried many ways but it didn't work
This was really helpful, thank you for the video!
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.
DAMN Pedro! This was a dope tutorial. Thank you so much!
Mate... Awesome tutorial, keep up with the content!
That was fire! Super efficient and definitely using SCSS with it helped a bit, organizing. Definitely subscribing!
Great tutorial. This helped me to quickly build dark theme for my react application
Intro 🔥
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
Thanks pedro! I really liked your explanation.
how can i change the size and height if i use media query? className doesnt work to react-switch
Your videos are so good. Thank you, man
You are incredible ^^ thank you for this valuable content
Toggle is resetting or triggering twice for some reason! Why!
how can I change body background color depending on theme?
Thanks Pedro! That was very helpful. How can I save the theme on localStorage in order to save the user's preference?
Wonderful and entertaining as well as informative video I just enjoyed watching.
Thanks a lot for this video!! I'm really happy to do it so quickly 😍
Thank you! It will help me so much!
Great tutorial. Subscribed.
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
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 .
hey can you please make a seperate video form storing user details along with files like image and pdf in mongoDB(MERN).
how would I pass the themes to other components?
How to make this using CSS modules instead of global CSS like in the video?
If you refresh the page in dark mode in your example, it will turn it back to light mode
Perfect video! Thanks!!
Awesome video!
I do think that using SCSS would make things a little bit cleaner.
cheers 👌👌
which theme do u use?
Hey! Pedro, you mind doing a video with golang as backend and react as frontend with SQL database??
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😍😍
Great Video! very helpful
é brasileiro esse pedro ai? parabens pela coragem
Mano seu inglês é absurdo de bom
It doesn't work when I try to put the button in my navbar
thank man really appreciate it
Thank you so much!
Perfect job, thanks....
👏saved my time💪
But how do I save the theme to localStorage using useEffect hook?
same question
redux toolkit , redux thunk complete video please .. 🙏😅
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
Nice 😎👍
Please create Next.js/REST API/Typescript/Tailwind CSS/Prisma/PostgreSQL stack for next project
ty that was helpful
Why my children components not affecting to dark mode? Anyone can help me plzz?
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
11:04 to add switch
Thanks
Bom vídeo. VAI BRASIL!
tnxxx🥰
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.
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??