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
28static const QColor textColorDark(255, 255, 255);
29static const QColor textColorBright(0, 0, 0);
30static const QColor gitQlientOrange(216, 144, 0); //#D89000
31static const QColor graphSelectionColorDark(80, 81, 82); //#505152
32static const QColor graphSelectionColorBright(198, 198, 199); //#C6C6C7
33static const QColor graphHoverColorDark(64, 65, 66); //#404142
34static const QColor graphHoverColorBright(239, 239, 239); //#EFEFEF
35static const QColor graphBackgroundColorDark(46, 47, 48); //#2E2F30
36static const QColor graphBackgroundColorBright(255, 255, 255); //#FFFFFF
37static const QColor graphBlueDark(87, 155, 213); //#579BD5
38static const QColor graphBlueBright(50, 92, 199); //#325CC7
39static const QColor graphRed(255, 34, 34); //#FF2222
40static const QColor graphGreen(101, 149, 43); //#65952B
41static const QColor graphOrange(255, 147, 32); //#FF9320
42static const QColor graphGrey(132, 132, 132); //#848484
43static const QColor graphPink(255, 121, 198); //#FF79C6
44static const QColor graphPastel(205, 144, 119); //#CD9077
45static const QColor graphCurrentBranch(0, 91, 150); //#005B96
46static const QColor graphLocalBranch(100, 151, 177); //#6497B1
47static const QColor graphRemoteBranch(1, 31, 75); //#011F4B
48static const QColor graphDetached(133, 30, 62); //#851E3E
49static const QColor graphTag(222, 195, 195); //#DEC3C3
50static const QColor highlightCommentStart(64, 65, 66); //#404142
51static const QColor highlightCommentEnd(96, 97, 98); //#606162
52static const QColor jenkinsResultSuccess(0, 175, 24); //#00AF18
53static const QColor jenkinsResultFailure(193, 32, 32); //#C12020
54static const QColor jenkinsResultAborted(91, 91, 91); //#5B5B5B
55static const QColor jenkinsResultNotBuilt(200, 200, 200); //#C8C8C8
56