mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
- General infrastructure to support palette tweaking - Hue shifts per color scale (UI, permalinks, dynamic code snippets) - Scale overall chroma up/down (UI, permalinks, dynamic code snippets) - Update contrast ratio tables (styling for contrast up/down/fail could use improvement, but it's a starting point) - Make sure it works with Turbo (i.e. things don't break when we navigate to another page)
9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
globalThis.Prism = globalThis.Prism || {};
|
|
globalThis.Prism.manual = true;
|
|
|
|
await import('./prism-downloaded.js');
|
|
|
|
Prism.plugins.customClass.prefix('code-');
|
|
|
|
export default Prism;
|