using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Defines state color table for CrumbBarItemView
///
public class CrumbBarItemViewStateColorTable
{
///
/// Gets or sets foreground/text color.
///
public Color Foreground = Color.Empty;
///
/// Gets or sets the background color blend collection.
///
public BackgroundColorBlendCollection Background = null;
///
/// Gets or sets the border color.
///
public Color Border = Color.Empty;
///
/// Gets or sets the border color.
///
public Color BorderLight = Color.Empty;
}
}