sig
  type rgb = int * int * int
  type rgba = int * int * int * int
  type t = RGB of SFColor.rgb | RGBA of SFColor.rgba
  val black : SFColor.t
  val white : SFColor.t
  val red : SFColor.t
  val green : SFColor.t
  val blue : SFColor.t
  val yellow : SFColor.t
  val magenta : SFColor.t
  val cyan : SFColor.t
  val transparent : SFColor.t
end