mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-07 02:03:49 -08:00
81 lines
1.8 KiB
Plaintext
81 lines
1.8 KiB
Plaintext
configuration {
|
|
font: "Sans 12";
|
|
line-margin: 10;
|
|
display-drun: "";
|
|
}
|
|
|
|
* {
|
|
background: #000000; /* Black background for everything */
|
|
background-alt: #000000; /* Ensures no alternation */
|
|
foreground: #CCCCCC;
|
|
selected: #3584E4;
|
|
active: #2E7D32;
|
|
urgent: #C62828;
|
|
}
|
|
|
|
window {
|
|
fullscreen: false;
|
|
background-color: rgba(0, 0, 0, 0.8); /* Solid black transparent background */
|
|
border-radius: 50px;
|
|
}
|
|
|
|
mainbox {
|
|
padding: 50px 50px;
|
|
background-color: transparent; /* Ensures black background fills entire main area */
|
|
children: [inputbar, listview];
|
|
spacing: 20px;
|
|
}
|
|
|
|
inputbar {
|
|
background-color: #333333; /* Dark gray background for input bar */
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
children: [prompt, entry];
|
|
}
|
|
|
|
prompt {
|
|
enabled: true;
|
|
padding: 8px;
|
|
background-color: @selected;
|
|
text-color: #000000;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
entry {
|
|
padding: 8px;
|
|
background-color: transparent; /* Slightly lighter gray for visibility */
|
|
text-color: #FFFFFF; /* White text to make typing visible */
|
|
placeholder: "Search...";
|
|
placeholder-color: rgba(255, 255, 255, 0.5);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
listview {
|
|
layout: vertical;
|
|
spacing: 8px;
|
|
lines: 9;
|
|
background-color: transparent; /* Consistent black background for list items */
|
|
}
|
|
|
|
element {
|
|
padding: 12px;
|
|
border-radius: 4px;
|
|
background-color: transparent; /* Uniform color for each list item */
|
|
text-color: @foreground;
|
|
}
|
|
|
|
element normal.normal {
|
|
background-color: transparent; /* Ensures no alternating color */
|
|
}
|
|
|
|
element selected.normal {
|
|
background-color: @selected;
|
|
text-color: #FFFFFF;
|
|
}
|
|
|
|
element-text {
|
|
background-color: transparent;
|
|
text-color: inherit;
|
|
vertical-align: 0.5;
|
|
}
|