Apply selenized style to wofi (ish)

This commit is contained in:
Maximilian Friedersdorff 2025-04-30 13:07:08 +01:00
parent 56eb58cd79
commit 08d68f50f1

View file

@ -1,25 +1,14 @@
@define-color base03 #002b36; @define-color background #103c48;
@define-color base02 #073642; @define-color background_highlight #184956;
@define-color base01 #586e75; @define-color foreground #adbcbc;
@define-color base00 #657b83; @define-color foreground_selected #cad8d9;
@define-color base0 #839496; @define-color highlight #ed8649;
@define-color base1 #93a1a1;
@define-color base2 #eee8d5;
@define-color base3 #fdf6e3;
@define-color yellow #b58900;
@define-color orange #cb4b16;
@define-color red #dc322f;
@define-color magenta #d33682;
@define-color violet #6c71c4;
@define-color blue #268bd2;
@define-color cyan #2aa198;
@define-color green #859900;
#entry { #entry {
border-radius: 5px; border-radius: 5px;
padding: 5px; padding: 5px;
margin: 0px 4px 0px 4px; margin: 0px 4px 0px 4px;
color: @base01; color: @foreground;
} }
@keyframes fadeIn { @keyframes fadeIn {
@ -28,20 +17,20 @@
} }
#entry:selected { #entry:selected {
background-color: @base3; background-color: @background;
padding: 5px; padding: 5px;
color: @base1; color: @foreground_selected;
} }
#entry:focus { #entry:focus {
border: 1px solid @orange; border: 1px solid @highlight;
} }
#text { #text {
color: @base01; color: @foreground;
} }
#text:selected { #text:selected {
color: @base1; color: @foreground_selected;
} }
@ -50,7 +39,7 @@
animation-duration: 0.2s; animation-duration: 0.2s;
font-family: JetBrainsMono; font-family: JetBrainsMono;
font-size: 14px; font-size: 14px;
background-color: @base2; background-color: @background;
} }
#input { #input {
@ -58,8 +47,8 @@
border-radius: 10px; border-radius: 10px;
margin: 5px 5px 5px 5px; margin: 5px 5px 5px 5px;
padding: 8px; padding: 8px;
background-color: @base3; background-color: @background_highlight;
color: @base01; color: @foreground;
} }
#input:focus *{ #input:focus *{
@ -67,7 +56,7 @@
} }
#input:focus { #input:focus {
border: 1px solid @orange; border: 1px solid @highlight;
} }
#inner-box { #inner-box {