diff --git a/res/themes/colors.py b/res/themes/colors.py index 31b1a77..4e7fec9 100644 --- a/res/themes/colors.py +++ b/res/themes/colors.py @@ -4,22 +4,67 @@ gruvbox_dark = { "bg0_hard": "#1d2021", # Background, hard "bg0_soft": "#32302f", # Background, soft - "bg0_normal": "#282828", # Background, normal + "bg0_normal": "#282828", # Background, normal "bg1": "#3c3836", # Secondary background "bg2": "#504945", # Background, darker "bg3": "#665c54", # Background, lighter "bg4": "#7c6f64", # Background, lightest - "fg0": "#fbf1c7", # Foreground, light "fg1": "#ebdbb2", # Foreground, normal "fg2": "#d5c4a1", # Foreground, slightly dark "fg3": "#bdae93", # Foreground, dark + "red": "#cc241d", # Red + "orange": "#d65d0e", # Orange + "yellow": "#d79921", # Yellow + "green": "#98971a", # Green + "aqua": "#689d6a", # Aqua + "blue": "#458588", # Blue + "purple": "#b16286", # Purple +} +gruvbox_light = { + # Backgrounds (Helle Töne) + "bg0_hard": "#f9f5d7", # Background, hard (sehr helles Beige) + "bg0_soft": "#f2e5bc", # Background, soft + "bg0_normal": "#fbf1c7", # Background, normal (der Standard-Look) + "bg1": "#ebdbb2", # Secondary background + "bg2": "#d5c4a1", # Background, darker (UI Elemente) + "bg3": "#bdae93", # Background, lighter + "bg4": "#a89984", # Background, lightest + # Foregrounds (Dunkle Töne für Text) + "fg0": "#282828", # Foreground, light (eigentlich dunkelster Text) + "fg1": "#3c3836", # Foreground, normal + "fg2": "#504945", # Foreground, slightly dark + "fg3": "#665c54", # Foreground, dark + # Colors (Angepasst für Kontrast auf hellem Grund) + "red": "#9d0006", # Red + "orange": "#af3a03", # Orange + "yellow": "#b57614", # Yellow + "green": "#79740e", # Green + "aqua": "#427b58", # Aqua + "blue": "#076678", # Blue + "purple": "#8f3f71", # Purple +} +everforest_dark = { + # Backgrounds + "bg0_hard": "#272e33", # Background, hard + "bg0_soft": "#333c43", # Background, soft + "bg0_normal": "#2d353b", # Background, normal + "bg1": "#3d484d", # Secondary background + "bg2": "#475258", # Background, darker (UI elements) + "bg3": "#4f585e", # Background, lighter + "bg4": "#56635f", # Background, lightest + # Foregrounds + "fg0": "#d3c6aa", # Foreground, light + "fg1": "#e6e2cc", # Foreground, normal + "fg2": "#dbd6bd", # Foreground, slightly dark + "fg3": "#9da9a0", # Foreground, dark + # Colors + "red": "#e67e80", # Red + "orange": "#e69875", # Orange + "yellow": "#dbbc7f", # Yellow + "green": "#a7c080", # Green + "aqua": "#83c092", # Aqua + "blue": "#7fbbb3", # Blue + "purple": "#d699b6", # Purple +} - "red": "#cc241d", # Red - "orange": "#d65d0e", # Orange - "yellow": "#d79921", # Yellow - "green": "#98971a", # Green - "aqua": "#689d6a", # Aqua - "blue": "#458588", # Blue - "purple": "#b16286" # Purple -} \ No newline at end of file