MonoDevelop.Ide.Editor.Highlighting.ColorScheme.GetForeground C# (CSharp) Method

GetForeground() private method

private GetForeground ( ChunkStyle chunkStyle ) : HslColor
chunkStyle ChunkStyle
return HslColor
		internal HslColor GetForeground (ChunkStyle chunkStyle)
		{
			if (chunkStyle.TransparentForeground)
				return PlainText.Foreground;
			return chunkStyle.Foreground;
		}
	}