Dictionary of options for the Titanium.UI.Window.titleAttributes property.
var win = Titanium.UI.createWindow({
title: 'Title',
barColor: 'yellow',
titleAttributes: {
color:'blue',
font: {fontFamily:'Snell Roundhand', fontSize:36},
shadow:{color:'gray', offset:{width:1,height:1}}
}
});
var nav = Titanium.UI.iOS.createNavigationWindow({window: win});
nav.open();
NOTE This is an abstract type. Any object meeting this description can be used where this type is used.
Color of the window title, as a color name or hex triplet.
Color of the window title, as a color name or hex triplet.
For information about color values, see the "Colors" section of Titanium.UI.