# titleAttributesParams
Dictionary of options for the titleAttributes property.
NOTE
This is an abstract type. Any object of this structure can be used where this type is used.
# Examples
# Simple Example
var win = Ti.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 = Ti.UI.createNavigationWindow({window: win});
nav.open();
# Properties
# color
color :String | Titanium.UI.Color
Color of the window title, as a color name or hex triplet.
For information about color values, see the "Colors" section of Titanium.UI.