提交 305544d9 编写于 作者: M Martin Aeschlimann

[themes] color by name

上级 9965a5d8
......@@ -420,4 +420,12 @@ export class Color {
factor = factor * (lum1 - lum2) / lum1;
return of.darken(factor);
}
}
public static readonly white = new Color(new RGBA(255, 255, 255, 255));
public static readonly black = new Color(new RGBA(0, 0, 0, 255));
public static readonly red = new Color(new RGBA(255, 0, 0, 255));
public static readonly blue = new Color(new RGBA(0, 0, 255, 255));
public static readonly green = new Color(new RGBA(0, 255, 0, 255));
public static readonly cyan = new Color(new RGBA(0, 255, 255, 255));
public static readonly lightgrey = new Color(new RGBA(211, 211, 211, 255));
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册