mirror of
https://codeberg.org/Yael-II/Matplotlib-Style.git
synced 2026-03-14 21:36:28 +01:00
60 lines
1.7 KiB
Python
60 lines
1.7 KiB
Python
|
|
#!/usr/bin/env python
|
|
#[TLP:AMBER] LIMITED DISTRIBUTION: WORK IN PROGRESS
|
|
"""
|
|
manchot_plot.py
|
|
|
|
@ Author: Moussouni, Yaël (PhD student; yael.moussouni@astro.unistra.fr)
|
|
@ Institution: Université de Strasbourg, CNRS, Observatoire astronomique
|
|
de Strasbourg, UMR 7550, F-67000 Strasbourg, France
|
|
@ Date: 2025-11-21
|
|
|
|
Licence:
|
|
Python Matplotlib Style
|
|
Copyright (C) 2026 Yaël Moussouni (yael.moussouni@astro.unistra.fr)
|
|
|
|
manchot_plot.py
|
|
Copyright (C) 2026 Yaël Moussouni (yael.moussouni@astro.unistra.fr)
|
|
|
|
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 3 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, see www.gnu.org/licenses/.
|
|
"""
|
|
# RAL colours (<https://www.ral-farben.de/alle-ral-farben>)
|
|
ral_1003 = "#e6b019"
|
|
ral_2010 = "#bc602d"
|
|
ral_3001 = "#8f1e24"
|
|
ral_4008 = "#7c477d"
|
|
ral_5005 = "#134a85"
|
|
ral_6032 = "#417e57"
|
|
ral_7004 = "#969799"
|
|
ral_8002 = "#704f40"
|
|
ral_9003 = "#ebecea"
|
|
ral_9004 = "#2f3133"
|
|
|
|
ral_350_50_45 = "#a6507e"
|
|
|
|
|
|
|
|
# Signal palette
|
|
signal_yellow = ral_1003
|
|
signal_orange = ral_2010
|
|
signal_red = ral_3001
|
|
signal_violet = ral_4008
|
|
signal_blue = ral_5005
|
|
signal_green = ral_6032
|
|
signal_grey = ral_7004
|
|
signal_brown = ral_8002
|
|
signal_white = ral_9003
|
|
signal_black = ral_9004
|
|
signal_pink = ral_350_50_45
|