feat: Initial commit

This commit is contained in:
2024-06-04 10:15:01 +02:00
commit 837f5aa67a
484 changed files with 37655 additions and 0 deletions

47
dot_config/wofi/style.css Normal file
View File

@@ -0,0 +1,47 @@
/*
Arc-Dark Color Scheme
*/
@define-color highlight #5294e2;
@define-color base1 #404552;
@define-color base2 #40455;
@define-color base3 #4b5160;
*{
font-family: UbuntuMono;
}
window {
border: 1px solid @highlight;
}
#input {
margin-bottom: 15px;
padding:3px;
border-radius: 5px;
border:none;
color: white;
}
#inner-box {
background-color: @base3;
}
#outer-box {
margin: 5px;
padding:15px;
background-color: @base2;
}
#text {
padding: 5px;
color: white;
}
#entry:nth-child(even) {
background-color: @base1;
}
#entry:selected {
background-color: @highlight;
}