Color


Object Hierarchy:

Object hierarchy for Color

Description:

public class Color

a Class representing an Ansi Extended 8 bit Color with foreground, background and bold attributes

using Pluie;

int main (string[] args)
{
var c1 = new Color(37, false);
var c2 = new Color(204, true);
var c3 = new Color(15, true, 24);
stdout.printf ("[%s][%s] %s ", c1.s ("oki"), c2.s ("very"), c3.s ("cool"));
return 0;
}

valac --pkg pluie-echo-0.1 color.vala


Namespace: Pluie
Package: pluie-echo-0.1

Content:

Properties:

Static methods:

Creation methods:

Methods: