To change theme colors for both dark mode and light mode open /color-theme.js file and there you can change primary, secondary, tertiary, accent. etc. colors.It looks like this:
And then you can style your components by adding backgroundColor or textColor variables, like this:
javascript
Copy
// Usually used for main View componentclassName={`flex-1 justify-center items-center ${backgroundColor}`}// Used for any text componentclassName={`font-bold text-center text-lg ${textColor}`}