summaryrefslogtreecommitdiff
path: root/ui/qt/tango_colors.h
blob: 04c436e60d76d7205e28e5ece27744f36de50404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* qt_gui_utils.h
 * Tango theme colors
 *
 * $Id$
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef __TANGO_COLORS_H__
#define __TANGO_COLORS_H__

// http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines

const uint tango_butter_1      = 0xfce94f;
const uint tango_butter_2      = 0xedd400;
const uint tango_butter_3      = 0xc4a000;
const uint tango_chameleon_1   = 0x8ae234;
const uint tango_chameleon_2   = 0x73d216;
const uint tango_chameleon_3   = 0x4e9a06;
const uint tango_orange_1      = 0xfcaf3e;
const uint tango_orange_2      = 0xf57900;
const uint tango_orange_3      = 0xce5c00;
const uint tango_sky_blue_1    = 0x729fcf;
const uint tango_sky_blue_2    = 0x3465a4;
const uint tango_sky_blue_3    = 0x204a87;
const uint tango_plum_1        = 0xad7fa8;
const uint tango_plum_2        = 0x75507b;
const uint tango_plum_3        = 0x5c3566;
const uint tango_chocolate_1   = 0xe9b96e;
const uint tango_chocolate_2   = 0xc17d11;
const uint tango_chocolate_3   = 0x8f5902;
const uint tango_scarlet_red_1 = 0xef2929;
const uint tango_scarlet_red_2 = 0xcc0000;
const uint tango_scarlet_red_3 = 0xa40000;
const uint tango_aluminium_1   = 0xeeeeec;
const uint tango_aluminium_2   = 0xd3d7cf;
const uint tango_aluminium_3   = 0xbabdb6;
const uint tango_aluminium_4   = 0x888a85;
const uint tango_aluminium_5   = 0x555753;
const uint tango_aluminium_6   = 0x2e3436;

#endif // __TANGO_COLORS_H__