Skip to content

Commit a85de46

Browse files
committed
fix: bg color on themes
meow
1 parent 513cb28 commit a85de46

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en" data-bs-theme="dark" style="background-color: #16191D">
2+
<html id="html" lang="en" data-bs-theme="dark" style="background-color: var(--bs-body)">
33
<head>
44

55
<title id="AppTitle">writea</title>

src/App.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
var Timestamp = Math.round(Date.now() / 240000)
22
document.addEventListener("DOMContentLoaded", (async () => {
33
// Register global variables
4+
var html = document.getElementById("html")
45
var App = document.getElementById("App")
56
var AppTitle = document.getElementById("AppTitle")
67
var AppTheme = document.getElementById("AppTheme")

0 commit comments

Comments
 (0)