Kanagawa theme, wofi
This commit is contained in:
parent
d1cb1f76f6
commit
3cb10ab800
1 changed files with 59 additions and 60 deletions
|
|
@ -1,71 +1,70 @@
|
||||||
@define-color background #103c48;
|
/* Uses the `wave` variant, look into the `base16` variants if you want lotus or dragon */
|
||||||
@define-color background_highlight #184956;
|
@define-color base00 #1F1F28;
|
||||||
@define-color foreground #adbcbc;
|
@define-color base01 #2A2A37;
|
||||||
@define-color foreground_selected #cad8d9;
|
@define-color base02 #223249;
|
||||||
@define-color highlight #ed8649;
|
@define-color base03 #727169;
|
||||||
|
@define-color base04 #C8C093;
|
||||||
|
@define-color base05 #DCD7BA;
|
||||||
|
@define-color base06 #938AA9;
|
||||||
|
@define-color base07 #363646;
|
||||||
|
@define-color base08 #C34043;
|
||||||
|
@define-color base09 #FFA066;
|
||||||
|
@define-color base0A #DCA561;
|
||||||
|
@define-color base0B #98BB6C;
|
||||||
|
@define-color base0C #7FB4CA;
|
||||||
|
@define-color base0D #7E9CD8;
|
||||||
|
@define-color base0E #957FB8;
|
||||||
|
@define-color base0F #D27E99;
|
||||||
|
|
||||||
#entry {
|
window {
|
||||||
border-radius: 5px;
|
border: 0px;
|
||||||
padding: 5px;
|
border-radius: 10px;
|
||||||
margin: 0px 4px 0px 4px;
|
font-family: monospace;
|
||||||
color: @foreground;
|
font-size: 18px;
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadeIn {
|
|
||||||
from {opacity: 0;}
|
|
||||||
to {opacity: 1;}
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry:selected {
|
|
||||||
background-color: @background;
|
|
||||||
padding: 5px;
|
|
||||||
color: @foreground_selected;
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry:focus {
|
|
||||||
border: 1px solid @highlight;
|
|
||||||
}
|
|
||||||
|
|
||||||
#text {
|
|
||||||
color: @foreground;
|
|
||||||
}
|
|
||||||
#text:selected {
|
|
||||||
color: @foreground_selected;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#window {
|
|
||||||
animation-name: fadeIn;
|
|
||||||
animation-duration: 0.2s;
|
|
||||||
font-family: JetBrainsMono;
|
|
||||||
font-size: 14px;
|
|
||||||
background-color: @background;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#input {
|
#input {
|
||||||
border: none;
|
border-radius: 10px 10px 0px 0px;
|
||||||
border-radius: 10px;
|
border: 0px;
|
||||||
margin: 5px 5px 5px 5px;
|
padding: 10px;
|
||||||
padding: 8px;
|
margin: 0px;
|
||||||
background-color: @background_highlight;
|
font-size: 28px;
|
||||||
color: @foreground;
|
color: @base0C;
|
||||||
}
|
background-color: @base01;
|
||||||
|
|
||||||
#input:focus *{
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#input:focus {
|
|
||||||
border: 1px solid @highlight;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#inner-box {
|
#inner-box {
|
||||||
border-radius: 10px;
|
margin: 0px;
|
||||||
margin: 5px;
|
color: @base05;
|
||||||
padding-top: 5px;
|
background-color: @base00;
|
||||||
}
|
}
|
||||||
|
|
||||||
#outer-box {
|
#outer-box {
|
||||||
border-radius: 10px;
|
margin: 0px;
|
||||||
padding: 5px;
|
background-color: @base00;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#selected {
|
||||||
|
background-color: @base02;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry {
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
background-color: @base00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:focus {
|
||||||
|
outline-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#scroll {
|
||||||
|
margin: 5px;
|
||||||
|
background-color: @base00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#text {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 2px 2px 2px 10px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue