New backup 2025-11-10 11:30:02
This commit is contained in:
parent
ca343aa839
commit
5ee307eb48
1 changed files with 16 additions and 11 deletions
|
|
@ -10,7 +10,12 @@ source ./active/colors.sh
|
||||||
theme_color="${de_color_13}"
|
theme_color="${de_color_13}"
|
||||||
white="${de_color_15}"
|
white="${de_color_15}"
|
||||||
black="${de_color_0}"
|
black="${de_color_0}"
|
||||||
transparency_strength="150" #out of 255
|
alpha="100" #out of 255
|
||||||
|
|
||||||
|
alpha_hex=$(printf '%x\n' "${alpha}")
|
||||||
|
|
||||||
|
#echo "${alpha_hex}"
|
||||||
|
#exit 0
|
||||||
|
|
||||||
qt_conf_line(){
|
qt_conf_line(){
|
||||||
printf '%s=%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s\n' \
|
printf '%s=%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s\n' \
|
||||||
|
|
@ -23,15 +28,15 @@ create_qt_conf(){
|
||||||
#window text
|
#window text
|
||||||
"#ff${de_color_13}"
|
"#ff${de_color_13}"
|
||||||
#button background
|
#button background
|
||||||
"#64${de_color_0}"
|
"#${alpha_hex}${de_color_0}"
|
||||||
#bright
|
#bright
|
||||||
"#64${de_color_15}"
|
"#${alpha_hex}${de_color_15}"
|
||||||
#less bright
|
#less bright
|
||||||
"#64${de_color_7}"
|
"#${alpha_hex}${de_color_7}"
|
||||||
#dark
|
#dark
|
||||||
"#64${de_color_8}"
|
"#${alpha_hex}${de_color_8}"
|
||||||
#less dark
|
#less dark
|
||||||
"#64${de_color_7}"
|
"#${alpha_hex}${de_color_7}"
|
||||||
#normal text
|
#normal text
|
||||||
"#ff${de_color_15}"
|
"#ff${de_color_15}"
|
||||||
#bright text
|
#bright text
|
||||||
|
|
@ -39,13 +44,13 @@ create_qt_conf(){
|
||||||
#button text
|
#button text
|
||||||
"#ff${de_color_15}"
|
"#ff${de_color_15}"
|
||||||
#normal background
|
#normal background
|
||||||
"#64${de_color_13}"
|
"#${alpha_hex}${de_color_13}"
|
||||||
#window
|
#window
|
||||||
"#64${de_color_13}"
|
"#${alpha_hex}${de_color_13}"
|
||||||
#shadow
|
#shadow
|
||||||
"#64${de_color_15}"
|
"#${alpha_hex}${de_color_15}"
|
||||||
#highlight
|
#highlight
|
||||||
"#64${de_color_5}"
|
"#${alpha_hex}${de_color_5}"
|
||||||
#highlighted text
|
#highlighted text
|
||||||
"#ff${de_color_1}"
|
"#ff${de_color_1}"
|
||||||
#link
|
#link
|
||||||
|
|
@ -57,7 +62,7 @@ create_qt_conf(){
|
||||||
#default
|
#default
|
||||||
"#ff${de_color_15}"
|
"#ff${de_color_15}"
|
||||||
#tooltip background
|
#tooltip background
|
||||||
"#64${de_color_0}"
|
"#${alpha_hex}${de_color_0}"
|
||||||
#tooltip text
|
#tooltip text
|
||||||
"#ff${de_color_15}"
|
"#ff${de_color_15}"
|
||||||
#placeholder text
|
#placeholder text
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue