Color.green
static var green: Color;
static Color green;
static green as Color
Description

Solid green. RGBA is (0, 1, 0, 1).

	// Assign a green color to this transform's material
	transform.renderer.material.color = Color.green;
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        transform.renderer.material.color = Color.green;
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		transform.renderer.material.color = Color.green