1 #pragma once
2 
3 #include <QColor>
4 #include <QString>
5 
6 namespace chatterino {
7 
8 #ifndef ATTR_UNUSED
9 #    ifdef Q_OS_WIN
10 #        define ATTR_UNUSED
11 #    else
12 #        define ATTR_UNUSED __attribute__((unused))
13 #    endif
14 #endif
15 
16 static const char *ANONYMOUS_USERNAME ATTR_UNUSED = "justinfan64537";
17 
getDefaultClientID()18 inline QByteArray getDefaultClientID()
19 {
20     return QByteArray("7ue61iz46fz11y3cugd0l3tawb4taal");
21 }
22 
23 static const std::vector<QColor> TWITCH_USERNAME_COLORS = {
24     {255, 0, 0},      // Red
25     {0, 0, 255},      // Blue
26     {0, 255, 0},      // Green
27     {178, 34, 34},    // FireBrick
28     {255, 127, 80},   // Coral
29     {154, 205, 50},   // YellowGreen
30     {255, 69, 0},     // OrangeRed
31     {46, 139, 87},    // SeaGreen
32     {218, 165, 32},   // GoldenRod
33     {210, 105, 30},   // Chocolate
34     {95, 158, 160},   // CadetBlue
35     {30, 144, 255},   // DodgerBlue
36     {255, 105, 180},  // HotPink
37     {138, 43, 226},   // BlueViolet
38     {0, 255, 127},    // SpringGreen
39 };
40 
41 }  // namespace chatterino
42