作为常量的常用颜色值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了作为常量的常用颜色值相关的知识,希望对你有一定的参考价值。
private static const RED:uint = 0xFF0000; private static const GREEN:uint = 0x00FF00; private static const BLUE:uint = 0x0000FF; private static const BLACK:uint = 0x000000; private static const WHITE:uint = 0xFFFFFF; private static const CYAN:uint = 0x00FFFF; private static const MAGENTA:uint = 0xFF00FF; private static const YELLOW:uint = 0xFFFF00; private static const LIGHT_GREY:uint = 0xCCCCCC; private static const MID_GREY:uint = 0x999999; private static const DARK_GREY:uint = 0x666666;
以上是关于作为常量的常用颜色值的主要内容,如果未能解决你的问题,请参考以下文章