mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +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)
7 lines
296 B
JavaScript
7 lines
296 B
JavaScript
/**
|
|
* Get import code for remixed themes and tweaked palettes.
|
|
*/
|
|
export { palette as getPaletteCode, theme as getThemeCode } from './tweak/code.js';
|
|
export { cdnUrl, hueRanges, hues, selectors, tints, urls } from './tweak/data.js';
|
|
export { default as Permalink } from './tweak/permalink.js';
|