1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-03 09:20:46 +00:00
TiddlyWiki5/core/wiki/palettepreview.tid

21 lines
445 B
Plaintext
Raw Normal View History

title: $:/snippets/palettepreview
\define swatchStyle()
background-color: $(swatchColour)$;
\end
\define swatch(colour)
<$set name="currentTiddler" value={{$:/palette}}>
<$set name="swatchColour" value={{##$colour$}}>
<div class="tw-swatch" style=<<swatchStyle>>/>
</$set>
</$set>
\end
<div class="tw-swatches-horiz">
<<swatch foreground>>
<<swatch background>>
<<swatch muted-foreground>>
<<swatch primary>>
<<swatch page-background>>
</div>