diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index b78b33f..5c15216 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -90,12 +90,12 @@ env = HYPRCURSOR_SIZE,24 # https://wiki.hypr.land/Configuring/Variables/#general general { gaps_in = 5 - gaps_out = 20 + gaps_out = 10 border_size = 2 # https://wiki.hypr.land/Configuring/Variables/#variable-types for info about colors - col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg + col.active_border = rgba(ff7b3bee) rgba(e0274aee) 45deg col.inactive_border = rgba(595959aa) # Set to true enable resizing windows by clicking and dragging on borders and gaps diff --git a/.config/hypr/hyprlock.conf b/.config/hypr/hyprlock.conf index 149af75..d53c292 100644 --- a/.config/hypr/hyprlock.conf +++ b/.config/hypr/hyprlock.conf @@ -1,15 +1,15 @@ background { monitor = path = ~/Bilder/Wallpaper/WatchTowerSunset.png # <--- HIER wird das Bild geladen - color = rgba(25, 20, 20, 1.0) + color = rgba(25, 16, 36, 1.0) # Tiefes Lila (falls das Bild mal nicht lädt) # OPTIONALE EFFEKTE für bessere Lesbarkeit: - blur_passes = 2 # 0 ist aus (0-4 empfohlen) - blur_size = 7 # Größe der Unschärfe - noise = 0.0117 # Ein bisschen Rauschen für Look - contrast = 0.8916 # Kontrast anpassen - brightness = 0.8172 # Bild leicht abdunkeln - vibrancy = 0.1696 # Farben anpassen + blur_passes = 2 + blur_size = 7 + noise = 0.0117 + contrast = 0.8916 + brightness = 0.8172 + vibrancy = 0.1696 } input-field { @@ -19,9 +19,9 @@ input-field { dots_size = 0.33 dots_spacing = 0.15 dots_center = true - outer_color = rgb(40, 40, 40) - inner_color = rgb(200, 200, 200) - font_color = rgb(10, 10, 10) + outer_color = rgb(ff7b3b) # Sonnen-Orange für den Rand + inner_color = rgb(191024) # Tiefes Lila für das Innere + font_color = rgb(fce8e1) # Helle Schrift für die Eingabe fade_on_empty = false placeholder_text = Passwort eingeben... hide_input = false @@ -33,10 +33,12 @@ input-field { label { monitor = text = $TIME - color = rgba(200, 200, 200, 1.0) - font_size = 50 + color = rgb(ff7b3b) # Leuchtendes Orange für die Uhrzeit + font_size = 65 font_family = sans-serif position = 0, 80 halign = center valign = center + shadow_passes = 1 # Leichter Schatten für bessere Lesbarkeit + shadow_size = 4 } \ No newline at end of file diff --git a/.config/waybar/style.css b/.config/waybar/style.css index cf07f4b..ff90faf 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -1,8 +1,8 @@ /* Die gesamte Bar */ window#waybar { - background-color: rgba(30, 30, 46, 0.8); /* Transparentes Dunkel */ - border-bottom: 2px solid #5e81ac; - color: #cdd6f4; + background-color: rgba(25, 16, 36, 0.85); /* Tiefes Dunkellila aus dem Wald */ + border-bottom: 2px solid #ff7b3b; /* Sonnen-Orange */ + color: #fce8e1; /* Warmes, weiches Weiß */ font-family: "Fira Code", "Font Awesome 6 Free"; font-size: 14px; } @@ -11,18 +11,18 @@ window#waybar { #workspaces button { padding: 0 5px; background-color: transparent; - color: #ffffff; + color: #fce8e1; } #workspaces button.active { - color: #5e81ac; - border-bottom: 3px solid #5e81ac; + color: #ff7b3b; /* Orange für aktiven Workspace */ + border-bottom: 3px solid #ff7b3b; } #clock, #cpu, #memory, #battery, #pulseaudio, #network { padding: 0 10px; margin: 4px; - background-color: #313244; + background-color: #3b1d3d; /* Dunkles Magenta/Pink als Hintergrund */ border-radius: 8px; } @@ -30,7 +30,7 @@ window#waybar { #tray { padding: 0 10px; margin: 4px; - background-color: #313244; /* Gleicher Hintergrund wie CPU/Clock */ + background-color: #3b1d3d; /* Gleicher Hintergrund wie CPU/Clock */ border-radius: 8px; } diff --git a/.config/wofi/style.css b/.config/wofi/style.css index 76e3c4b..46dadc9 100644 --- a/.config/wofi/style.css +++ b/.config/wofi/style.css @@ -1,8 +1,8 @@ /* Das Hauptfenster */ window { margin: 0px; - border: 2px solid #5e81ac; /* Ein schönes Blau */ - background-color: #1e1e2e; /* Dunkles Lila/Schwarz */ + border: 2px solid #ff7b3b; /* Sonnen-Orange */ + background-color: rgba(25, 16, 36, 0.95); /* Tiefes Dunkellila, fast blickdicht */ border-radius: 12px; font-family: "Fira Code", monospace; font-size: 16px; @@ -11,10 +11,10 @@ window { /* Das Suchfeld oben */ #input { margin: 10px; - border: none; + border: 2px solid #e0274a; /* Pink-Rot für das Suchfeld */ border-radius: 8px; - background-color: #313244; - color: #cdd6f4; + background-color: #3b1d3d; /* Dunkles Magenta */ + color: #fce8e1; } /* Die Liste der Apps */ @@ -32,17 +32,17 @@ window { /* Der ausgewählte Eintrag (Hover/Focus) */ #entry:selected { - background-color: #5e81ac; + background-color: #e0274a; /* Kräftiges Pink/Rot aus den Wolken beim Auswählen */ outline: none; } /* Textfarben */ #text { margin: 5px; - color: #cdd6f4; + color: #fce8e1; } #text:selected { - color: #ffffff; + color: #ffffff; /* Strahlendes Weiß für den ausgewählten Text */ font-weight: bold; } \ No newline at end of file