1 | #pragma once |
2 | |
3 | /**************************************************************************************** |
4 | ** GitQlient is an application to manage and operate one or several Git repositories. With |
5 | ** GitQlient you will be able to add commits, branches and manage all the options Git provides. |
6 | ** Copyright (C) 2021 Francesc Martinez |
7 | ** |
8 | ** LinkedIn: www.linkedin.com/in/cescmm/ |
9 | ** Web: www.francescmm.com |
10 | ** |
11 | ** This program is free software; you can redistribute it and/or |
12 | ** modify it under the terms of the GNU Lesser General Public |
13 | ** License as published by the Free Software Foundation; either |
14 | ** version 2 of the License, or (at your option) any later version. |
15 | ** |
16 | ** This program is distributed in the hope that it will be useful, |
17 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
19 | ** Lesser General Public License for more details. |
20 | ** |
21 | ** You should have received a copy of the GNU Lesser General Public |
22 | ** License along with this library; if not, write to the Free Software |
23 | ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
24 | ***************************************************************************************/ |
25 | |
26 | #include <QColor> |
27 | |
28 | static const QColor textColorDark(255, 255, 255); |
29 | static const QColor textColorBright(0, 0, 0); |
30 | static const QColor gitQlientOrange(216, 144, 0); //#D89000 |
31 | static const QColor graphSelectionColorDark(80, 81, 82); //#505152 |
32 | static const QColor graphSelectionColorBright(198, 198, 199); //#C6C6C7 |
33 | static const QColor graphHoverColorDark(64, 65, 66); //#404142 |
34 | static const QColor graphHoverColorBright(239, 239, 239); //#EFEFEF |
35 | static const QColor graphBackgroundColorDark(46, 47, 48); //#2E2F30 |
36 | static const QColor graphBackgroundColorBright(255, 255, 255); //#FFFFFF |
37 | static const QColor graphBlueDark(87, 155, 213); //#579BD5 |
38 | static const QColor graphBlueBright(50, 92, 199); //#325CC7 |
39 | static const QColor graphRed(255, 34, 34); //#FF2222 |
40 | static const QColor graphGreen(101, 149, 43); //#65952B |
41 | static const QColor graphOrange(255, 147, 32); //#FF9320 |
42 | static const QColor graphGrey(132, 132, 132); //#848484 |
43 | static const QColor graphPink(255, 121, 198); //#FF79C6 |
44 | static const QColor graphPastel(205, 144, 119); //#CD9077 |
45 | static const QColor graphCurrentBranch(0, 91, 150); //#005B96 |
46 | static const QColor graphLocalBranch(100, 151, 177); //#6497B1 |
47 | static const QColor graphRemoteBranch(1, 31, 75); //#011F4B |
48 | static const QColor graphDetached(133, 30, 62); //#851E3E |
49 | static const QColor graphTag(222, 195, 195); //#DEC3C3 |
50 | static const QColor (64, 65, 66); //#404142 |
51 | static const QColor (96, 97, 98); //#606162 |
52 | static const QColor jenkinsResultSuccess(0, 175, 24); //#00AF18 |
53 | static const QColor jenkinsResultFailure(193, 32, 32); //#C12020 |
54 | static const QColor jenkinsResultAborted(91, 91, 91); //#5B5B5B |
55 | static const QColor jenkinsResultNotBuilt(200, 200, 200); //#C8C8C8 |
56 | |