⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 color.h

📁 linux嵌入式开发程序
💻 H
字号:
/*---------------------------------------------------------------- *  Definition of colors * *	In this file, labels of basic colors (16 colors) are defined to *  avoid dependence on VRAM type. When useing VRAM type (4x1, 1x4) *  which has an intensity bit, define label "INTENSITY". *  These definitions are examples. adjust these according to *  hardware. *//*#define       INTENSITY*/#ifndef INTENSITY#define DarkBlue    0x0000007f#define DarkGreen   0x00007f00#define DarkCyan    0x00007f7f#define DarkRed     0x007f0000#define DarkMagenta 0x007f007f#define DarkYellow  0x007f7f00#define DarkWhite   0x007f7f7f#define DarkBlack   0x003f3f7f#define Black       0x00000000#define Blue        0x800000ff#define Green       0x8000ff00#define Cyan        0x8000ffff#define Red         0x80ff0000#define Magenta     0x80ff00ff#define Yellow      0x80ffff00#define White       0x80ffffff#else#define DarkBlue    0x000000ff#define DarkGreen   0x0000ff00#define DarkCyan    0x0000ffff#define DarkRed     0x00ff0000#define DarkMagenta 0x00ff00ff#define DarkYellow  0x00ffff00#define DarkWhite   0x00ffffff#define DarkBlack   0x80000000#define Black       0x00000000#define Blue        0x800000ff#define Green       0x8000ff00#define Cyan        0x8000ffff#define Red         0x80ff0000#define Magenta     0x80ff00ff#define Yellow      0x80ffff00#define White       0x80ffffff#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -