Skip to content

Commit

Permalink
Theme enabled (supporter and changelog pages.)
Browse files Browse the repository at this point in the history
  • Loading branch information
rocksdanister committed Apr 12, 2024
1 parent 12d9d7f commit 36987e6
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
22 changes: 22 additions & 0 deletions changelog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
html {
max-width: 850px;
margin: auto;
color-scheme: dark;
}

body {
Expand Down Expand Up @@ -61,6 +62,27 @@
top: 0;
opacity: 1;
}

@media (prefers-color-scheme: light) {
html {
color-scheme: light;
}

body {
color: black;
background-color: #f9f9f9;
}
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}

body {
color: white;
background-color: #272727;
}
}
</style>
<body>
<h3 style="opacity: 0.75">26 Oct 2023 | Lively v2.0.7.4 Update</h3>
Expand Down
25 changes: 24 additions & 1 deletion supporters/styles/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html {
color-scheme: dark;
}

body {
/* background-color: #000; */
background-color: #202020;
overflow: hidden;
pointer-events: none;
}
Expand All @@ -24,3 +28,22 @@ body {
font-size: 10px;
}
}

@media (prefers-color-scheme: light) {
html {
color-scheme: light;
}

body {
background-color: #f3f3f3;
}
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}

body {
background-color: #202020;
}
}

0 comments on commit 36987e6

Please sign in to comment.