start of settings doc page

This commit is contained in:
Geoff Doty 2024-01-17 20:25:00 -05:00
parent 7a18cae226
commit 98e916726f
1 changed files with 43 additions and 0 deletions

43
examples/settings.html Normal file
View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
<link rel="stylesheet" href="/stylelite.css">
</head>
<body>
<main>
<h1>Stylelite Variables</h1>
<form action="">
<table>
<thead>
<tr>
<th>Property</th>
<th>Description</th>
<th>Default Value</th>
<th>Current Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>--theme</code>
</td>
<td>
A theme accent color
</td>
<td>
<code>steelblue</code>
</td>
<td>
<input type="color" name="theme" class="spaceless">
</td>
</tr>
</tbody>
</table>
</form>
</main>
</body>
</html>