Lines Matching defs:Color

18     public struct Color : IEquatable<Color>  struct
23 public float r;
28 public float g;
33 public float b;
38 public float a;
44 public int r8
60 public int g8
76 public int b8
92 public int a8
108 public float h property
156 public float s property
177 public float v property
197 public static Color ColorN(string name, float alpha = 1f) in ColorN()
267 public void ToHsv(out float hue, out float saturation, out float value) in ToHsv()
307 public static Color FromHsv(float hue, float saturation, float value, float alpha = 1.0f) in FromHsv()
351 public Color Blend(Color over) in Blend()
374 public Color Contrasted() in Contrasted()
390 public Color Darkened(float amount) in Darkened()
403 public Color Inverted() in Inverted()
419 public Color Lightened(float amount) in Lightened()
435 public Color LinearInterpolate(Color to, float weight) in LinearInterpolate()
453 public Color LinearInterpolate(Color to, Color weight) in LinearInterpolate()
470 public int ToAbgr32() in ToAbgr32()
489 public long ToAbgr64() in ToAbgr64()
508 public int ToArgb32() in ToArgb32()
527 public long ToArgb64() in ToArgb64()
546 public int ToRgba32() in ToRgba32()
565 public long ToRgba64() in ToRgba64()
583 public string ToHtml(bool includeAlpha = true) in ToHtml()
604 public Color(float r, float g, float b, float a = 1.0f) in Color() argument
617 public Color(Color c, float a = 1.0f) in Color() argument
630 public Color(int rgba) in Color() method
646 public Color(long rgba) in Color() argument
657 private static int ParseCol8(string str, int ofs) in ParseCol8()
698 private String ToHex32(float val) in ToHex32()
725 internal static bool HtmlIsValid(string color) in HtmlIsValid()
780 public static Color Color8(byte r8, byte g8, byte b8, byte a8 = 255) in Color8()
789 public Color(string rgba) in Color() argument
848 public static Color operator +(Color left, Color right) in operator +()
857 public static Color operator -(Color left, Color right) in operator -()
866 public static Color operator -(Color color) in operator -()
871 public static Color operator *(Color color, float scale) in operator *()
880 public static Color operator *(float scale, Color color) in operator *()
889 public static Color operator *(Color left, Color right) in operator *()
898 public static Color operator /(Color color, float scale) in operator /()
907 public static Color operator /(Color left, Color right) in operator /()
916 public static bool operator ==(Color left, Color right) in operator ==()
921 public static bool operator !=(Color left, Color right) in operator !=()
926 public static bool operator <(Color left, Color right) in operator <()
943 public static bool operator >(Color left, Color right) in operator >()
960 public override bool Equals(object obj) in Equals()
970 public bool Equals(Color other) in Equals()
981 public bool IsEqualApprox(Color other) in IsEqualApprox()
986 public override int GetHashCode() in GetHashCode()
991 public override string ToString() in ToString()
996 public string ToString(string format) in ToString()