Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-17 23:14:35 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-17 23:14:35 +0300
commit2bd987b7835b520ef0e3f87d3fea86b507f6c243 (patch)
tree4e69eebeb8c5996fb12e9423aeaadcd5a0060e5f /server
parent823557fe74c296262feb4b8be089d20414d30853 (diff)
Use common colors.
Diffstat (limited to 'server')
-rw-r--r--server/TracyImGui.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/server/TracyImGui.hpp b/server/TracyImGui.hpp
index ecf26f57..c597293d 100644
--- a/server/TracyImGui.hpp
+++ b/server/TracyImGui.hpp
@@ -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
};