1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #include "sys-defines.h"
- #include "extern.h"
- const plColor _pl_p_idraw_stdcolors[PS_NUM_IDRAW_STD_COLORS] =
- {
- {0x0000, 0x0000, 0x0000},
- {0xa500, 0x2a00, 0x2a00},
- {0xffff, 0x0000, 0x0000},
- {0xffff, 0xa5a5, 0x0000},
- {0xffff, 0xffff, 0x0000},
- {0x0000, 0xffff, 0x0000},
- {0x0000, 0x0000, 0xffff},
- {0xbf00, 0x0000, 0xff00},
- {0x4f00, 0x2f00, 0x4f00},
- {0xffff, 0xffff, 0xffff},
- {0xc350, 0xc350, 0xc350},
- {0x80e8, 0x80e8, 0x80e8}
- };
- const char * const _pl_p_idraw_stdcolornames[PS_NUM_IDRAW_STD_COLORS] =
- {
- "Black", "Brown", "Red", "Orange", "Yellow", "Green",
- "Blue", "Indigo", "Violet", "White", "LtGray", "DkGray"
- };
- const double _pl_p_idraw_stdshadings[PS_NUM_IDRAW_STD_SHADINGS] =
- {
- 0.0, 0.25, 0.5, 0.75, 1.0
- };
|