I'm nearing the end of my first big mobile angular project. Thus far I've just adopted default styles from the twitter bootstrap provided, bootstrap style sheet links look like this:
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/toaster.css" rel="stylesheet">
<link href="css/mobile-angular-ui-hover.min.css" rel="stylesheet">
<link href="css/mobile-angular-ui-base.min.css" rel="stylesheet">
<link href="css/mobile-angular-ui-desktop.min.css" rel="stylesheet">
What should be my next steps to restyle default fonts, colors etc.
So for example, this style is set in the mobile-angular-ui-base css:
.text-primary{color:#007aff;}
In the bootstrap css I like has it defined as:
.text-primary{color:#b58900}
So if I want to inherit the theme / styles from the bootstrap is it just a matter of creating a further custom css superceding the styles again?
Or is there some way of regenerating the mobile angular css based on a bootstrap?