New backup 2025-08-21 12:37:10
This commit is contained in:
parent
6aaf0714e1
commit
0c7e5751e3
6 changed files with 183 additions and 0 deletions
1
de/home/.config/worf/colors.css
Symbolic link
1
de/home/.config/worf/colors.css
Symbolic link
|
@ -0,0 +1 @@
|
|||
../de-vars/colors/seoul256/colors.css
|
7
de/home/.config/worf/config
Normal file
7
de/home/.config/worf/config
Normal file
|
@ -0,0 +1,7 @@
|
|||
width="400"
|
||||
height="420"
|
||||
content_vcenter = true
|
||||
#content_halign = "Center"
|
||||
valign = "Center"
|
||||
#width=400px
|
||||
#height=420px
|
8
de/home/.config/worf/emoji.css
Normal file
8
de/home/.config/worf/emoji.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
@import "./style.css";
|
||||
|
||||
#entry {
|
||||
font-size: 2em;
|
||||
}
|
||||
#text {
|
||||
margin-left: 0px;
|
||||
}
|
82
de/home/.config/worf/style.css
Normal file
82
de/home/.config/worf/style.css
Normal file
|
@ -0,0 +1,82 @@
|
|||
@import "./colors.css";
|
||||
|
||||
* {
|
||||
font-family: FontAwesome, Overpass;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
:root {
|
||||
--window-border-color: rgba(from var(--color5) r g b / 1);
|
||||
--foreground-color: rgba(from var(--color13) r g b / 0.5);
|
||||
--foreground-shadow-color: rgba(from var(--color0) r g b / 1);
|
||||
--active-foreground-color: rgba(from var(--color13) r g b / 1);
|
||||
--window-background-color: rgba(from var(--color0) r g b / 0.6);
|
||||
--button-background-color: rgba(from var(--color5) r g b / 0.15);
|
||||
--button-background-active-color: rgba(from var(--color5) r g b / 0.5);
|
||||
}
|
||||
|
||||
window {
|
||||
border: 2px solid var(--window-border-color);
|
||||
background-color: transparent;
|
||||
border-radius:10px;
|
||||
}
|
||||
|
||||
#input {
|
||||
margin: 15px 15px 0px 15px;
|
||||
border: 0px solid transparent;
|
||||
background-color: transparent;
|
||||
color: var(--active-foreground-color);
|
||||
border-radius:10px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
margin: 5px;
|
||||
border: 0px solid transparent;
|
||||
background-color: transparent;
|
||||
border-radius:10px;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
margin: 2px;
|
||||
border: 0px solid transparent;
|
||||
background-color: var(--window-background-color);
|
||||
border-radius:6px;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#text {
|
||||
color: var(--foreground-color);
|
||||
text-shadow: 0px 0px 2px var(--foreground-shadow-color),0px 0px 6px var(--foreground-shadow-color);
|
||||
font-weight: bold;
|
||||
margin-left: 15px;
|
||||
}
|
||||
#text:selected {
|
||||
color: var(--active-foreground-color);
|
||||
}
|
||||
|
||||
#entry{
|
||||
border: 0px solid transparent;
|
||||
border-radius: 10px;
|
||||
background-color: var(--button-background-color);
|
||||
margin:10px;
|
||||
padding: 10px;
|
||||
}
|
||||
#entry:selected {
|
||||
background-color: var(--button-background-active-color);
|
||||
outline: none;
|
||||
}
|
||||
#entry:hover {
|
||||
background-color: var(--button-background-active-color);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#img {
|
||||
opacity: 0.6;
|
||||
}
|
||||
#img:selected {
|
||||
opacity: 1;
|
||||
}
|
84
de/home/.config/worf/style.css.old2
Normal file
84
de/home/.config/worf/style.css.old2
Normal file
|
@ -0,0 +1,84 @@
|
|||
@import "./colors.css";
|
||||
|
||||
* {
|
||||
font-family: FontAwesome, Overpass;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
:root {
|
||||
/* --color5: #ff0000;*/
|
||||
--window-border-color: rgba(var(--color5),1);
|
||||
}
|
||||
|
||||
/*@define-color window-border-color rgba(from var(--color5),1);
|
||||
@define-color window-border-color rgba(var(--color5),1);*/
|
||||
@define-color foreground-color rgba(--wofi-rgb-color13,0.5);
|
||||
@define-color foreground-shadow-color rgba(--wofi-rgb-color0,1);
|
||||
@define-color active-foreground-color rgba(--wofi-rgb-color13,1);
|
||||
@define-color window-background-color rgba(--wofi-rgb-color0,0.6);
|
||||
@define-color button-background-color rgba(--wofi-rgb-color5,0.15);
|
||||
@define-color button-background-active-color rgba(--wofi-rgb-color5,0.5);
|
||||
@define-color transparent-color rgba(--wofi-rgb-color0,0);
|
||||
|
||||
window {
|
||||
/* border: 2px solid --window-border-color;*/
|
||||
border: 2px solid rgba(from var(--color5) r g b / 255);
|
||||
background-color: @transparent-color;
|
||||
border-radius:10px;
|
||||
/* opacity:0.25;*/
|
||||
}
|
||||
|
||||
#input {
|
||||
margin: 15px 15px 0px 15px;
|
||||
border: 0px solid @transparent-color;
|
||||
background-color: @transparent-color;
|
||||
color: @active-foreground-color;
|
||||
border-radius:10px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
margin: 5px;
|
||||
border: 0px solid rgba(--wofi-rgb-color0,0);
|
||||
background-color: transparent;
|
||||
border-radius:10px;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
margin: 2px;
|
||||
border: 0px solid @transparent-color;
|
||||
background-color: @window-background-color;
|
||||
border-radius:6px;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
background-color: @transparent-color;
|
||||
}
|
||||
|
||||
#text {
|
||||
margin: 5px;
|
||||
color: @foreground-color;
|
||||
text-shadow: 0px 0px 2px @foreground-shadow-color,0px 0px 6px @foreground-shadow-color;
|
||||
}
|
||||
#text:selected {
|
||||
color: @active-foreground-color;
|
||||
}
|
||||
|
||||
#entry{
|
||||
border: 0px solid @transparent-color;
|
||||
border-radius: 10px;
|
||||
background-color: @button-background-color;
|
||||
margin:10px 10px;
|
||||
min-height: 40px;
|
||||
}
|
||||
#entry:selected {
|
||||
background-color: @button-background-active-color;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#img {
|
||||
opacity: 0.5;
|
||||
}
|
||||
#img:selected {
|
||||
opacity: 1;
|
||||
}
|
|
@ -50,3 +50,4 @@
|
|||
.config/qt6ct
|
||||
.config/gtk-3.0/settings.ini
|
||||
.config/menus/applications.menu
|
||||
.config/worf
|
||||
|
|
Loading…
Add table
Reference in a new issue