tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

repeat-radial-ref.yaml (1009B)


      1 ---
      2 root:
      3  items:
      4    - type: radial-gradient
      5      bounds: 50 50 300 300
      6      center: 150 150
      7      radius: 150 150
      8      # note: we need stops up to 1.4 because a repeating radial gradient
      9      # will fill the whole rect beyond 1.0. So the furthest radius we have
     10      # to fill in is the diagonal of the unit square
     11      stops: [0.0, red,
     12              0.1, red,
     13              0.1, blue,
     14              0.2, blue,
     15              0.2, red,
     16              0.3, red,
     17              0.3, blue,
     18              0.4, blue,
     19              0.4, red,
     20              0.5, red,
     21              0.5, blue,
     22              0.6, blue,
     23              0.6, red,
     24              0.7, red,
     25              0.7, blue,
     26              0.8, blue,
     27              0.8, red,
     28              0.9, red,
     29              0.9, blue,
     30              1.0, blue,
     31              1.0, red,
     32              1.1, red,
     33              1.1, blue,
     34              1.2, blue,
     35              1.2, red,
     36              1.3, red,
     37              1.3, blue,
     38              1.4, blue]