I am building a web application where I have set my default color to navy blue using css. But when i added the twitter bootstrap css\'s in my page I did not find my navy blue co
You have to override the bootstrap default by being a bit more specific. Try this for a black background:
html body { background-color: rgba(0,0,0,1.00); }