diff --git a/examples/index.html b/examples/index.html
index 0913073..9d42357 100644
--- a/examples/index.html
+++ b/examples/index.html
@@ -189,34 +189,34 @@
Available rulesets
-
+
-
The base ruleset, providing the layout and basic high contrast theming.
-
+
-
Inspired by the older Bluelib versions, with semi-transparent panels and rounded borders.
-
+
-
Made to celebrate the addition of
backdrop-filter
to Firefox, makes panels have a stained glass
background.
-
+
-
Experimental ruleset with bizzare or buggy but fun rules. Unsupported, do not use in production!
- Colors
-
-
+
-
Steffo's signature color theme, based upon RYG⁵'s logo colors.
-
+
-
Nemesis' own color theme, with a "coffee-like" look.
-
+
-
A theme developed in collaboration with Viktya, featuring a pixelated beach-side sunrise.
diff --git a/examples/index.js b/examples/index.js
index c25419d..8ea8f72 100644
--- a/examples/index.js
+++ b/examples/index.js
@@ -24,11 +24,11 @@ async function sleepUntilLessIsDone() {
const enabledByDefault = [
- "less:bluelib-dist-base:root",
- "less:bluelib-dist-classic:root",
- "less:bluelib-dist-glass:root",
- "less:bluelib-dist-colors-royalblue:root",
- "less:bluelib-dist-fonts-fira-ghpages:root",
+ "less:dist-base:root",
+ "less:dist-classic:root",
+ "less:dist-glass:root",
+ "less:dist-colors-royalblue:root",
+ "less:dist-fonts-fira-ghpages:root",
]
@@ -42,7 +42,7 @@ async function enableChanges() {
await sleepUntilLessIsDone()
lessStyles = [...document.styleSheets].filter(
- (s) => s.ownerNode.id.startsWith("less:bluelib-dist")
+ (s) => s.ownerNode.id.startsWith("less:dist")
).map(
(s) => ({[s.ownerNode.id]: s})
).reduce(
@@ -52,7 +52,7 @@ async function enableChanges() {
console.debug("Found Less stylesheets:", lessStyles)
lessColors = [...document.styleSheets].filter(
- (s) => s.ownerNode.id.startsWith("less:bluelib-dist-colors")
+ (s) => s.ownerNode.id.startsWith("less:dist-colors")
).map(
(s) => ({[s.ownerNode.id]: s})
).reduce(
@@ -62,7 +62,7 @@ async function enableChanges() {
console.debug("Found Less colors:", lessColors)
lessFonts = [...document.styleSheets].filter(
- (s) => s.ownerNode.id.startsWith("less:bluelib-dist-fonts")
+ (s) => s.ownerNode.id.startsWith("less:dist-fonts")
).map(
(s) => ({[s.ownerNode.id]: s})
).reduce(