Use common colors.

This commit is contained in:
Bartosz Taudul 2022-09-17 22:14:35 +02:00
parent 823557fe74
commit 2bd987b783
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -41,18 +41,18 @@ static constexpr const uint32_t SyntaxColors[] = {
};
static constexpr const uint32_t AsmOpTypeColors[] = {
0xFFF4843F, // None
0xFFF4843F, // Jump
0xFFF4843F, // Branch
0xFFF4843F, // Call
0xFFF4843F, // Ret
0xFFF4843F, // Privileged
0xFFE2AF35, // None
0xFFE2AF35, // Jump
0xFFE2AF35, // Branch
0xFFE2AF35, // Call
0xFFE2AF35, // Ret
0xFFE2AF35, // Privileged
};
static constexpr const uint32_t AsmSyntaxColors[] = {
0xFFFFD1A3, // label
0xFFB2B2B2, // default ('[', '+', '*', ',')
0xFF60BC3F, // dword/xmmword 'ptr'
0xFFE5E5E5, // default ('[', '+', '*', ',')
0xFF51AD72, // dword/xmmword 'ptr'
0xFFBF75C6, // register
0xFFE899CE, // literal
};