mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
184 lines
4.1 KiB
Plaintext
184 lines
4.1 KiB
Plaintext
* {
|
|
font: "Open Sans 12";
|
|
nord0: #2e3440;
|
|
nord1: #3b4252;
|
|
nord2: #434c5e;
|
|
nord3: #4c566a;
|
|
nord4: #d8dee9;
|
|
nord5: #e5e9f0;
|
|
nord6: #eceff4;
|
|
nord7: #8fbcbb;
|
|
nord8: #88c0d0;
|
|
nord9: #81a1c1;
|
|
nord10: #5e81ac;
|
|
nord11: #bf616a;
|
|
nord12: #d08770;
|
|
nord13: #ebcb8b;
|
|
nord14: #a3be8c;
|
|
nord15: #b48ead;
|
|
|
|
spacing: 2;
|
|
background-color: var(nord1);
|
|
|
|
background: var(nord1);
|
|
foreground: var(nord4);
|
|
|
|
normal-background: var(background);
|
|
normal-foreground: var(foreground);
|
|
alternate-normal-background: var(background);
|
|
alternate-normal-foreground: var(foreground);
|
|
selected-normal-background: var(nord8);
|
|
selected-normal-foreground: var(background);
|
|
|
|
active-background: var(background);
|
|
active-foreground: var(nord10);
|
|
alternate-active-background: var(background);
|
|
alternate-active-foreground: var(nord10);
|
|
selected-active-background: var(nord10);
|
|
selected-active-foreground: var(background);
|
|
|
|
urgent-background: var(background);
|
|
urgent-foreground: var(nord11);
|
|
alternate-urgent-background: var(background);
|
|
alternate-urgent-foreground: var(nord11);
|
|
selected-urgent-background: var(nord11);
|
|
selected-urgent-foreground: var(background);
|
|
}
|
|
element {
|
|
padding: 4px 0px 4px 7px;
|
|
spacing: 5px;
|
|
border: 0;
|
|
cursor: pointer;
|
|
margin: 1px 0px;
|
|
border-radius: 6px;
|
|
}
|
|
element normal.normal {
|
|
background-color: var(normal-background);
|
|
text-color: var(normal-foreground);
|
|
}
|
|
element normal.urgent {
|
|
background-color: var(urgent-background);
|
|
text-color: var(urgent-foreground);
|
|
}
|
|
element normal.active {
|
|
background-color: var(active-background);
|
|
text-color: var(active-foreground);
|
|
}
|
|
element selected.normal {
|
|
background-color: var(selected-normal-background);
|
|
text-color: var(selected-normal-foreground);
|
|
}
|
|
element selected.urgent {
|
|
background-color: var(selected-urgent-background);
|
|
text-color: var(selected-urgent-foreground);
|
|
}
|
|
element selected.active {
|
|
background-color: var(selected-active-background);
|
|
text-color: var(selected-active-foreground);
|
|
}
|
|
element alternate.normal {
|
|
background-color: var(alternate-normal-background);
|
|
text-color: var(alternate-normal-foreground);
|
|
}
|
|
element alternate.urgent {
|
|
background-color: var(alternate-urgent-background);
|
|
text-color: var(alternate-urgent-foreground);
|
|
}
|
|
element alternate.active {
|
|
background-color: var(alternate-active-background);
|
|
text-color: var(alternate-active-foreground);
|
|
}
|
|
element-text {
|
|
background-color: rgba(0, 0, 0, 0%);
|
|
text-color: inherit;
|
|
highlight: inherit;
|
|
cursor: inherit;
|
|
}
|
|
element-icon {
|
|
background-color: rgba(0, 0, 0, 0%);
|
|
size: 1.0000em;
|
|
text-color: inherit;
|
|
cursor: inherit;
|
|
}
|
|
window {
|
|
padding: 0;
|
|
border: 0;
|
|
background-color: var(background);
|
|
width: 60%;
|
|
border-radius: 12px;
|
|
}
|
|
mainbox {
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
message {
|
|
margin: 0px 7px;
|
|
}
|
|
textbox {
|
|
text-color: var(foreground);
|
|
}
|
|
listview {
|
|
margin: 0px 0px 5px;
|
|
scrollbar: true;
|
|
spacing: 2px;
|
|
fixed-height: 0;
|
|
columns: 2;
|
|
}
|
|
scrollbar {
|
|
padding: 0;
|
|
handle-width: 14px;
|
|
border: 0;
|
|
handle-color: var(nord3);
|
|
}
|
|
button {
|
|
spacing: 0;
|
|
text-color: var(normal-foreground);
|
|
cursor: pointer;
|
|
}
|
|
button selected {
|
|
background-color: var(selected-normal-background);
|
|
text-color: var(selected-normal-foreground);
|
|
}
|
|
|
|
entry {
|
|
spacing: 0;
|
|
cursor: text;
|
|
text-color: var(normal-foreground);
|
|
background-color: var(nord3);
|
|
}
|
|
|
|
inputbar {
|
|
padding: 7px;
|
|
margin: 7px;
|
|
spacing: 0;
|
|
text-color: var(normal-foreground);
|
|
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
|
}
|
|
|
|
case-indicator {
|
|
spacing: 0;
|
|
text-color: var(nord15);
|
|
margin: 0 0 0 0.5%;
|
|
}
|
|
|
|
entry {
|
|
padding: 4px 8px;
|
|
spacing: 0;
|
|
text-color: var(nord8);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
prompt {
|
|
spacing: 0;
|
|
text-color: var(nord15);
|
|
padding: 4px 0px;
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
expand: false;
|
|
str: ":";
|
|
margin: 0px 0.3em 0em 0em ;
|
|
text-color: var(nord15);
|
|
padding: 4px 0px;
|
|
}
|