25 lines
733 B
C
25 lines
733 B
C
// Optional override for Switch Pro colour fields.
|
|
// Copy/modify the values below and rebuild to change how the controller appears on the Switch.
|
|
// Each value is an 8-bit RGB component.
|
|
|
|
#pragma once
|
|
|
|
// Body shell colour
|
|
#define SWITCH_COLOR_BODY_R 0x1B
|
|
#define SWITCH_COLOR_BODY_G 0x1B
|
|
#define SWITCH_COLOR_BODY_B 0x1D
|
|
|
|
// Face/button cluster colour
|
|
#define SWITCH_COLOR_BUTTON_R 0xFF
|
|
#define SWITCH_COLOR_BUTTON_G 0xFF
|
|
#define SWITCH_COLOR_BUTTON_B 0xFF
|
|
|
|
// Left grip colour
|
|
#define SWITCH_COLOR_LEFT_GRIP_R 0x00
|
|
#define SWITCH_COLOR_LEFT_GRIP_G 0x89
|
|
#define SWITCH_COLOR_LEFT_GRIP_B 0xEB
|
|
|
|
// Right grip colour
|
|
#define SWITCH_COLOR_RIGHT_GRIP_R 0x00
|
|
#define SWITCH_COLOR_RIGHT_GRIP_G 0x89
|
|
#define SWITCH_COLOR_RIGHT_GRIP_B 0xEB
|