blob: 08e721a1cafeae84aa228927a3c63328fba89d1d [file] [log] [blame]
Sébastien Blin1f915762020-08-03 13:27:42 -04001/*
2 * Copyright (C) 2017-2020 by Savoir-faire Linux
3 * 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
19#include <QColor>
20
21#pragma once
22
23namespace JamiAvatarTheme {
24static const QColor defaultAvatarColor_ = {"#ff9e9e9e"}; //Grey
25static const QColor avatarColors_[]{
26 {"#fff44336"}, //Red
27 {"#ffe91e63"}, //Pink
28 {"#ff9c27b0"}, //Purple
29 {"#ff673ab7"}, //Deep Purple
30 {"#ff3f51b5"}, //Indigo
31 {"#ff2196f3"}, //Blue
32 {"#ff00bcd4"}, //Cyan
33 {"#ff009688"}, //Teal
34 {"#ff4caf50"}, //Green
35 {"#ff8bc34a"}, //Light Green
36 {"#ff9e9e9e"}, //Grey
37 {"#ffcddc39"}, //Lime
38 {"#ffffc107"}, //Amber
39 {"#ffff5722"}, //Deep Orange
40 {"#ff795548"}, //Brown
41 {"#ff607d8b"} //Blue Grey
42};
43} // namespace JamiAvatarTheme