mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-31 03:14:49 +00:00
21 lines
445 B
Plaintext
21 lines
445 B
Plaintext
|
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>
|