Change default opacity to 0.9 / 90%
This commit is contained in:
parent
39eb67173f
commit
c7b7bb51a2
|
@ -14,7 +14,7 @@
|
||||||
font = "${fonts.monospace.name}-${toString fonts.sizes.applications}";
|
font = "${fonts.monospace.name}-${toString fonts.sizes.applications}";
|
||||||
fixed-font-family = "${fonts.monospace.name}";
|
fixed-font-family = "${fonts.monospace.name}";
|
||||||
variable-font-family = "${fonts.sansSerif.name}";
|
variable-font-family = "${fonts.sansSerif.name}";
|
||||||
alpha = "80";
|
alpha = "90";
|
||||||
in ''
|
in ''
|
||||||
(customize-set-variable 'shell-file-name "${shell}")
|
(customize-set-variable 'shell-file-name "${shell}")
|
||||||
(add-to-list 'initial-frame-alist '(font . "${font}"))
|
(add-to-list 'initial-frame-alist '(font . "${font}"))
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
window = {
|
window = {
|
||||||
opacity = 0.8;
|
opacity = 0.9;
|
||||||
dynamic_title = true;
|
dynamic_title = true;
|
||||||
padding = {
|
padding = {
|
||||||
x = 10;
|
x = 10;
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
b = config.scheme."${accentColour}-rgb-b";
|
b = config.scheme."${accentColour}-rgb-b";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
background = "rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.8)";
|
background = "rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.9)";
|
||||||
bar-bg-color = "rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.8)";
|
bar-bg-color = "rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.9)";
|
||||||
bar-fg-color = "rgba(${base05-rgb-r}, ${base05-rgb-g}, ${base05-rgb-b}, 1.0)";
|
bar-fg-color = "rgba(${base05-rgb-r}, ${base05-rgb-g}, ${base05-rgb-b}, 1.0)";
|
||||||
border-color = "rgba(${accent.r}, ${accent.g}, ${accent.b}, 1.0)";
|
border-color = "rgba(${accent.r}, ${accent.g}, ${accent.b}, 1.0)";
|
||||||
image-opacity = "1.0";
|
image-opacity = "1.0";
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
border: 1px solid ${withHashtag.${accentColour}};
|
border: 1px solid ${withHashtag.${accentColour}};
|
||||||
margin: 18px;
|
margin: 18px;
|
||||||
background-color: rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.8);
|
background-color: rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.9);
|
||||||
color: ${withHashtag.base05};
|
color: ${withHashtag.base05};
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -142,7 +142,7 @@
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
border: 1px solid ${withHashtag.${accentColour}};
|
border: 1px solid ${withHashtag.${accentColour}};
|
||||||
margin: 18px;
|
margin: 18px;
|
||||||
background-color: rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.8);
|
background-color: rgba(${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 0.9);
|
||||||
color: ${withHashtag.base05};
|
color: ${withHashtag.base05};
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -269,7 +269,7 @@
|
||||||
|
|
||||||
window > box {
|
window > box {
|
||||||
color: ${base05};
|
color: ${base05};
|
||||||
background: alpha(${base00}, 0.8);
|
background: alpha(${base00}, 0.9);
|
||||||
margin: 5px 5px 0px;
|
margin: 5px 5px 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
border: 1px solid ${accent};
|
border: 1px solid ${accent};
|
||||||
|
|
Reference in a new issue