From f9234eeeef16a1c666b0c54d1bc3379589789397 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Sun, 8 Jan 2023 12:47:25 +0100 Subject: [PATCH] added color definitions --- grum/colors.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 grum/colors.py diff --git a/grum/colors.py b/grum/colors.py new file mode 100644 index 0000000..9863645 --- /dev/null +++ b/grum/colors.py @@ -0,0 +1,25 @@ + +BASE_ORANGE = "#f8a600" +BASE_GREEN = "#afca0b" + +#GREY1 = "#575756" +#GREY2 = "#706f6f" +#GREY3 = "#9d9d9d" +#GREY4 = "#bdbdbd" +#GREY5 = "#e3e3e3" + +YELLOW = "#ffcc00" +ORANGE = "#ea5b0c" +RED = "#c00d0d" +BROWN1 = "#855642" +BROWN2 = "#8c7425" +GREEN1 = "#7d932e" +GREEN2 = "#107527" +VIOLET = "#792953" +BLUE = "#003e6e" + +COOL1 = "#00959e" +COOL2 = "#0097be" +COOL3 = "#0074a6" + +