Merge pull request #310 from NtsCiccio/default-background-color

Default background color
This commit is contained in:
Rhyne 2025-07-31 11:54:35 -04:00 committed by GitHub
commit 6d25f68028
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 12 additions and 7 deletions

7
dist/paper.css vendored
View file

@ -453,6 +453,11 @@ html {
}
/* stylelint-enable */
html {
background-color: #41403e;
background-color: var(--main-background);
}
/* Layout styling */
.container {
margin: 0 auto;
@ -2029,6 +2034,8 @@ textarea:focus {
border-width: 2px;
}
select {
background-color: #41403e;
background-color: var(--main-background);
height: 2.35rem;
}

2
dist/paper.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -1,9 +1,3 @@
body {
background-image: url("/img/geometry2.png")
}
html.dark body {
background: #41403e;
}
#top {
max-width: 1440px;
}

3
src/core/_global.scss Normal file
View file

@ -0,0 +1,3 @@
html {
@include color('background-color', 'main-background');
}

View file

@ -4,6 +4,7 @@
@import 'core/config';
@import 'core/mixins';
@import 'core/reset';
@import 'core/global';
/* Layout styling */
@import 'layout/container';