blob: 5ab07bdd78f0725430f330100ce5cacc4c0b2b23 [file] [log] [blame]
Edric Milaret4e370992016-01-20 11:29:32 -05001/***************************************************************************
Anthony Léonard2fde81d2017-04-17 10:06:55 -04002 * Copyright (C) 2017 by Savoir-faire Linux *
Edric Milaret4e370992016-01-20 11:29:32 -05003 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
Isa Nanic6e4a39a2018-12-04 14:26:02 -050019#include <QColor>
20
Edric Milaret4e370992016-01-20 11:29:32 -050021#pragma once
22
23namespace RingTheme {
24
Sébastien Blincba5b522018-12-10 12:48:36 -050025static const QColor blue_ {"#109ede"};
Edric Milaret70ae8782016-04-18 16:10:44 -040026static const QColor lightBlue_ {"#c1ebf0"};
Edric Milaret4e370992016-01-20 11:29:32 -050027static const QColor lightGrey_ {242, 242, 242};
Anthony Léonard04097312017-07-17 11:54:27 -040028static const QColor imGrey_ {"#dedee0"};
29static const QColor imBlue_ {"#cfebf5"};
Edric Milaret4e370992016-01-20 11:29:32 -050030static const QColor lightBlack_ {63, 63, 63};
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040031static const QColor grey_ {160, 160, 160 };
Edric Milaret4e370992016-01-20 11:29:32 -050032static const QColor red_ {251, 72, 71};
Anthony Léonarddd9fb6a2017-04-26 10:25:48 -040033static const QColor lightRed_ {252, 91, 90};
34static const QColor darkRed_ {219, 55, 54};
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040035static const QColor notificationRed_{ 255, 59, 48 };
Andreas Traczyk43c08232018-10-31 13:42:09 -040036static const QColor urgentOrange_{ 255, 165, 0 };
Anthony Léonarda8d78f92017-04-28 11:40:29 -040037static const QColor green_ {127, 255, 0};
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040038static const QColor presenceGreen_{ 76, 217, 100 };
Andreas Traczyk3f9c6602018-08-15 16:44:50 -040039static const QColor smartlistSelection_ { 237, 237, 237 };
40static const QColor smartlistHighlight_ { 242, 242, 242 };
Edric Milaret4e370992016-01-20 11:29:32 -050041
Andreas Traczyk072291f2018-08-16 16:48:58 -040042static const QColor defaultAvatarColor_ = { "#ff9e9e9e" }; //Grey
Anthony Léonard3d920d82017-07-31 13:51:16 -040043static const QColor avatarColors_[] {
44 {"#fff44336"}, //Red
45 {"#ffe91e63"}, //Pink
46 {"#ff9c27b0"}, //Purple
47 {"#ff673ab7"}, //Deep Purple
48 {"#ff3f51b5"}, //Indigo
49 {"#ff2196f3"}, //Blue
50 {"#ff00bcd4"}, //Cyan
51 {"#ff009688"}, //Teal
52 {"#ff4caf50"}, //Green
53 {"#ff8bc34a"}, //Light Green
54 {"#ff9e9e9e"}, //Grey
55 {"#ffcddc39"}, //Lime
56 {"#ffffc107"}, //Amber
57 {"#ffff5722"}, //Deep Orange
58 {"#ff795548"}, //Brown
59 {"#ff607d8b"} //Blue Grey
60};
61
Edric Milaret4e370992016-01-20 11:29:32 -050062}