fCraft.Drawing.BlockPalette.DefineLight C# (CSharp) Method

DefineLight() private method

private DefineLight ( ) : BlockPalette
return BlockPalette
        static BlockPalette DefineLight()
        {
            return new BlockPalette( "Light", 1 ) {
                {RgbColor.FromArgb( 109, 80, 57 ), new[] {Block.Dirt}},
                {RgbColor.FromArgb( 176, 170, 130 ), new[] {Block.Sand}},
                {RgbColor.FromArgb( 111, 104, 104 ), new[] {Block.Gravel}},
                {RgbColor.FromArgb( 179, 44, 44 ), new[] {Block.Red}},
                {RgbColor.FromArgb( 179, 111, 44 ), new[] {Block.Orange}},
                {RgbColor.FromArgb( 179, 179, 44 ), new[] {Block.Yellow}},
                {RgbColor.FromArgb( 109, 179, 44 ), new[] {Block.Lime}},
                {RgbColor.FromArgb( 44, 179, 44 ), new[] {Block.Green}},
                {RgbColor.FromArgb( 44, 179, 111 ), new[] {Block.Teal}},
                {RgbColor.FromArgb( 44, 179, 179 ), new[] {Block.Aqua}},
                {RgbColor.FromArgb( 86, 132, 179 ), new[] {Block.Cyan}},
                {RgbColor.FromArgb( 99, 99, 180 ), new[] {Block.Blue}},
                {RgbColor.FromArgb( 111, 44, 180 ), new[] {Block.Indigo}},
                {RgbColor.FromArgb( 141, 62, 179 ), new[] {Block.Violet}},
                {RgbColor.FromArgb( 180, 44, 180 ), new[] {Block.Magenta}},
                {RgbColor.FromArgb( 179, 44, 111 ), new[] {Block.Pink}},
                {RgbColor.FromArgb( 64, 64, 64 ), new[] {Block.Black}},
                {RgbColor.FromArgb( 118, 118, 118 ), new[] {Block.Gray}},
                {RgbColor.FromArgb( 179, 179, 179 ), new[] {Block.White}},
                {RgbColor.FromArgb( 21, 19, 29 ), new[] {Block.Obsidian}}
            };
        }