Skip to content

Commit

Permalink
Correct the theming not to use css colour variables
Browse files Browse the repository at this point in the history
I suspected they wouldn't work.

This isn't so good for maintainability.
  • Loading branch information
ccouzens committed Apr 18, 2024
1 parent 981e86d commit 9fe5d3c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion public/game.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@
<link rel="preload" href="computer.wasm" as="fetch" crossorigin />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Maze</title>
<meta name="theme-color" content="var(--subtle-highlight-color)" />
<meta
name="theme-color"
content="color(srgb 0.7 1 0.7)"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="color(srgb 0 0.3 0)"
media="(prefers-color-scheme: dark)"
/>
</head>

<body>
Expand Down

0 comments on commit 9fe5d3c

Please sign in to comment.