fun with transparency

This commit is contained in:
sawka
2023-10-05 12:02:43 -07:00
parent daee5c7c36
commit aca9fcdcad
2 changed files with 13 additions and 2 deletions
+1
View File
@@ -206,6 +206,7 @@ function createMainWindow(clientData) {
height: bounds.height,
minWidth: 800,
minHeight: 600,
transparent: true,
webPreferences: {
preload: path.join(getAppBasePath(), DistDir, "preload.js"),
},
+12 -2
View File
@@ -1,5 +1,6 @@
@base-color: #eceeec;
@base-background: rgba(21, 23, 21, 1);
@base-background: rgba(21, 23, 21, 1.0);
@base-background-transparent: rgba(21, 23, 21, 0.7);
@base-background-dev: rgba(21, 23, 21, 1);
@base-border: rgba(241, 246, 243, 0.08);
@background-session: rgba(13, 13, 13, 0.85);
@@ -53,7 +54,16 @@
}
html,
body,
body {
overflow: hidden;
font-family: "Martian Mono", sans-serif;
font-size: 12.5px;
font-weight: 300;
line-height: 20px;
background: @base-background-transparent;
color: @base-color;
}
textarea {
overflow: hidden;
font-family: "Martian Mono", sans-serif;