Salome HOME
Changement de copyright
[modules/eficas.git] / src / EFICASGUI / colors.py
1 # Copyright (C) 2001-2017  EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # Liste de couleurs pour visualisation
21 RED = 255,0,0
22 GREEN = 0,255,0
23 BLUE = 0,0,255
24 SANDY = 255,0,128
25 ORANGE = 255,128,0
26 PURPLE = 128,0,255
27 DARK_RED = 128,0,0
28 DARK_GREEN = 0,128,0
29 DARK_BLUE = 0,0,128
30 YELLOW = 255,255,0
31 PINK = 255,0,255
32 CYAN = 0,255,255
33
34 ListeColors = (RED, GREEN, BLUE, SANDY, ORANGE, PURPLE, DARK_RED, DARK_GREEN, DARK_BLUE, YELLOW, PINK, CYAN)
35
36
37