package org.subalternproductions.seepResource.dsl.style
{
	/**
	 * simple representation of a style
	 */
	public class SStyle extends AbstractSStyle implements  ISStyle
	{
		
		
		
		public static const DEFAULT:String = "*";
		public static const INDENT:String = "indent"; 
		public static const ERROR:String = "error";
		public static const COMMENT:String = "comment";
		public static const UNPARSED:String = "__unparsed";
		public static const WORDBREAK:String = "__wordbreak";

		
		public static const META_OBJECT_TEMPLATE:String = "meta-template";

		
		// properties
		public static const COLOR:String = "color";
		public static const HOVER:String = "hover";

		public static const FONT_FAMILY:String = "fontFamily";
		public static const FONT_SIZE:String = "fontSize";
		public static const LINE_HEIGHT:String = "line-height";
		
		
		
		public function SStyle(name:String= null, colour:int = undefined)
		{
			this.name = name;
			this.colour = colour;
		}

	
				

		public var colour:int;
		
	
		
	} // class
} // package