Home | History | Annotate | Download | only in sys
      1 #include <colortbl.h>
      2 
      3 static struct color_table default_color_table[] = {
      4     {"default", "0", 0xffffffff, 0x00000000, SHADOW_NORMAL}
      5 };
      6 
      7 struct color_table *console_color_table = default_color_table;
      8 int console_color_table_size =
      9     (sizeof default_color_table / sizeof(struct color_table));
     10