Initial full commit for Dell16 Arch

This commit is contained in:
2026-06-18 09:55:42 +02:00
commit 8d3c4f4acb
61 changed files with 3891 additions and 0 deletions

View File

@@ -0,0 +1,114 @@
/**
* Catppuccin Mocha theme
* Color palette copied from https://catppuccin.com/palette
* https://github.com/hiimsergey/rofi-catppuccin
*/
* {
base: #1e1e2e;
surface0: #313244;
overlay0: #6c7086;
text: #cdd6f4;
mauve: #cba6f7;
red: #f38ba8;
peach: #fab387;
green: #a6e3a1;
lavender: #b4befe;
background-color: @base;
}
window {
height: 600;
width: 600;
border: 3;
border-radius: 10;
border-color: @lavender;
}
mainbox {
spacing: 0;
children: [inputbar, message, listview];
}
inputbar {
color: @text;
padding: 14;
background-color: @base;
}
message {
padding: 10;
background-color: @overlay0;
}
listview {
padding: 8;
border-radius: 0 0 10 10;
border: 2 2 2 2;
border-color: @base;
background-color: @base;
dynamic: false;
}
textbox {
text-color: @text;
background-color: inherit;
}
error-message {
border: 20 20 20 20;
}
entry, prompt, case-indicator {
text-color: inherit;
}
prompt {
margin: 0 10 0 0;
}
element {
padding: 5;
vertical-align: 0.5;
border-radius: 10;
background-color: @surface0;
}
element.selected.normal {
background-color: @overlay0;
}
element.alternate.normal {
background-color: inherit;
}
element.normal.active, element.alternate.active {
background-color: @peach;
}
element.selected.active {
background-color: @green;
}
element.normal.urgent, element.alternate.urgent {
background-color: @red;
}
element.selected.urgent {
background-color: @mauve;
}
element-text, element-icon {
size: 40;
margin: 0 10 0 0;
vertical-align: 0.5;
background-color: inherit;
text-color: @text;
}
element-text .active, element-text .urgent {
text-color: @base;
}