2026-01-30: Changed palette, continued RC params...

This commit is contained in:
Moussouni, Yaël
2026-01-30 18:40:01 +01:00
parent 55e7ba0814
commit 475595f0c8
2 changed files with 125 additions and 96 deletions

View File

@@ -29,65 +29,31 @@ 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"
# Default palette
colour_blue = "#113847"
colour_light_blue = "#88AAC6"
colour_red = "#4D251D"
colour_yellow = "#BD9A5A"
colour_green = "#3F4738"
colour_violet = "#5F2C51"
colour_cyan = "#1D627E"
colour_orange = "#9B4D40"
ral_350_50_45 = "#a6507e"
colour_purple = colour_violet
# Bright palette
bright_white = "#DDDDDD"
bright_black = "#121212"
bright_blue = "#06518E"
bright_light_blue = "#009EDB"
bright_red = "#ED1C24"
bright_yellow = "#E8BD0F"
bright_green = "#3B795E"
bright_violet = "#C95BCF"
bright_cyan = "#216576"
bright_light_cyan = "#1E8C9D"
bright_orange = "#EB6D1A"
bright_purple = bright_violet
# Blue palette
blues_1 = "#D6E3EC"
blues_2 = "#88AAC6" # light blue
blues_3 = "#4A5B65"
blues_4 = "#21475A"
blues_5 = "#113847" # blue
# Grey palette
greys_1 = "#CED8DB" # white
greys_2 = "#A4B0B4"
greys_3 = "#7A888C" # grey
greys_4 = "#596569"
greys_5 = "#171F22" # black
colour_white = greys_1
colour_grey = greys_3
colour_black = greys_5
# bluegreen palette
bluegreen_1 = "#C2D0DB"
bluegreen_2 = "#6C8B90"
bluegreen_3 = "#4D6C5B"
bluegreen_4 = "#3A5662"
bluegreen_5 = "#31504B"
# tree palette
tree_1 = "#CFDED7"
tree_2 = "#806655" # brown
tree_3 = "#3F4738" # green
tree_4 = "#113847" # blue
tree_5 = "#122921" # dark green
colour_brown = tree_2
colour_dark_green = tree_5
# 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