Ändern der Akzent Farben auf Orange.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user