Hi
There are two methods:
Use ThemeMagic from template options and create your own theme with different colours.
2nd method:
Use firebug or inspect element from browser tool to check the style classes and then override them via custom.css file.
Example:
how can i change the copyright text color to white and the link color to white as well?
Check class: http://prntscr.com/evsne7
Use this code
.copyright a {color:#fff!important;}
This way you can check the style and override it using custom.css file.
Path for custom.css: Open templates/YOUR JA TEMPLATE/css/custom.css
If file is not present then create it and add the code.
Regards