generated from tokens-studio/plugin-example-multi
-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
37 lines (35 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="tailwind.css" rel="stylesheet" />
</head>
<body>
<div class="p-8">
<h1 class="text-4xl font-bold mb-2">Figma → GitHub → Tailwind</h1>
<p class="text-xl text-theme-fg-muted mb-4">This example transforms tokens stored on GitHub to Style Dictionary ready files which in turn triggers TailwindCSS.</p>
<button class="p-2 bg-theme-accent-default text-theme-fg-onAccent font-bold" id="switch" onclick="toggleTheme()">Switch</button>
</div>
<script>
function setTheme(name) {
localStorage.setItem("theme", name);
document.documentElement.className = name;
}
function toggleTheme() {
if (localStorage.getItem("theme") === "dark-theme") {
setTheme("light-theme");
} else {
setTheme("dark-theme");
}
}
(function () {
if (localStorage.getItem("theme") === "dark-theme") {
setTheme("dark-theme");
} else {
setTheme("light-theme");
}
})();
</script>
</body>
</html>