You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
677B

  1. {% assign dark = page | dark %}
  2. {% assign light = page | light %}
  3. {% assign diameter = include.diameter %}
  4. {% assign radius = diameter | divided_by:2.0 %}
  5. {% assign pointer_width = include.pointer_width %}
  6. {% assign pointer_length = radius | minus:pointer_width %}
  7. {% assign color = include.color %}
  8. {% assign pointer_color = include.pointer_color %}
  9. <svg width="{{ diameter }}mm" height="{{ diameter }}mm" viewBox="-{{ radius }} -{{ radius }} {{ diameter }} {{ diameter }}">
  10. <g stroke="{{ light }}" fill="{{ dark }}">
  11. <circle r="{{ radius }}" stroke="none"/>
  12. <line y2="-{{ pointer_length }}" stroke-width="{{ pointer_width }}" stroke-linecap="round"/>
  13. </g>
  14. </svg>