add blue no variables themes
This commit is contained in:
parent
74594d688d
commit
a2fa0a439a
2 changed files with 116 additions and 0 deletions
7
styles/BlueNoVar/config.toml
Normal file
7
styles/BlueNoVar/config.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
image_size=28
|
||||||
|
allow_images=true
|
||||||
|
term="kitty -e"
|
||||||
|
insensitive=true
|
||||||
|
key_detection_type="Code"
|
||||||
|
blurred_background=false
|
||||||
|
lines_size_factor=1.9
|
||||||
109
styles/BlueNoVar/style.css
Normal file
109
styles/BlueNoVar/style.css
Normal file
|
|
@ -0,0 +1,109 @@
|
||||||
|
* {
|
||||||
|
font-family: "Inter", "Segoe UI", sans-serif;
|
||||||
|
transition: all 250ms ease;
|
||||||
|
box-sizing: border-box;
|
||||||
|
color: #e0e0e0;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: rgba(18, 18, 18, 1);
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#background {
|
||||||
|
background-color: rgba(26, 26, 26, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
all: unset;
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
border-radius: 16px;
|
||||||
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
|
||||||
|
padding: 1rem;
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 2rem auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #input {
|
||||||
|
background-color: rgba(42, 42, 42, 0.5);
|
||||||
|
color: #f0f0f0;
|
||||||
|
border: 3px solid rgb(26, 35, 126);
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 0.75rem 1rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-size: 1rem;
|
||||||
|
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #input:focus,
|
||||||
|
#window #outer-box #input:focus-visible,
|
||||||
|
#window #outer-box #input:active {
|
||||||
|
background-color: #2d2d2d;
|
||||||
|
border: 1px solid rgba(26, 35, 126, 1);
|
||||||
|
box-shadow: 0 0 0 3px rgba(26, 35, 126, 1);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #scroll {
|
||||||
|
border-top: 3px solid rgb(26, 35, 126);
|
||||||
|
padding-top: 0.5rem;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #scroll #inner-box #entry {
|
||||||
|
color: #f5f5f5;
|
||||||
|
background-color: rgba(38, 38, 38, 0.3);
|
||||||
|
padding: 0.7rem 1rem;
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-bottom: 0.4rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
transition: background-color 250ms ease;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #scroll #inner-box #entry:hover {
|
||||||
|
background-color: rgba(56, 56, 56, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #scroll #inner-box #entry:selected {
|
||||||
|
background-color: rgba(40, 53, 147, 0.7);
|
||||||
|
color: rgba(255, 255, 255, 1);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #scroll #inner-box #entry #img {
|
||||||
|
margin-right: 0.6rem;
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
opacity: 0.8;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window #outer-box #scroll #inner-box #entry:hover #img {
|
||||||
|
filter: brightness(1.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-key-label-box {
|
||||||
|
background-color: rgba(42, 42, 42, 0.5);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 0.5em 1em;
|
||||||
|
margin: 0.5em 0 0.5em 0.5em;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #eaeaea;
|
||||||
|
box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.03);
|
||||||
|
flex-shrink: 0;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-key-hint-text {
|
||||||
|
margin-left: 0.75em;
|
||||||
|
opacity: 0.6;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue