diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-19 17:53:00 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-19 17:53:00 -0400 |
commit | b8e18c060fec97930cf82601c01dd6eccb6824fa (patch) | |
tree | e7f68fa78e8d33ef03f57a4b6bcd5ede1c19db78 /static/logo | |
parent | 2ba2b39f73d0fa9f01d096983fbc8f630a8bc6e9 (diff) |
static/logo: peack.rkt: make logos in different sizes
Diffstat (limited to 'static/logo')
-rw-r--r-- | static/logo/peach-114.png | bin | 0 -> 2337 bytes | |||
-rw-r--r-- | static/logo/peach-120.png | bin | 0 -> 2420 bytes | |||
-rw-r--r-- | static/logo/peach-152.png | bin | 0 -> 3204 bytes | |||
-rw-r--r-- | static/logo/peach-16.png | bin | 0 -> 291 bytes | |||
-rw-r--r-- | static/logo/peach-167.png | bin | 0 -> 3533 bytes | |||
-rw-r--r-- | static/logo/peach-180.png | bin | 0 -> 3792 bytes | |||
-rw-r--r-- | static/logo/peach-32.png | bin | 0 -> 533 bytes | |||
-rw-r--r-- | static/logo/peach-48.png | bin | 0 -> 831 bytes | |||
-rw-r--r-- | static/logo/peach-58.png | bin | 0 -> 1046 bytes | |||
-rw-r--r-- | static/logo/peach-76.png | bin | 0 -> 1427 bytes | |||
-rw-r--r-- | static/logo/peach-80.png | bin | 0 -> 1532 bytes | |||
-rw-r--r-- | static/logo/peach-87.png | bin | 0 -> 1676 bytes | |||
-rw-r--r-- | static/logo/peach.rkt | 6 |
13 files changed, 4 insertions, 2 deletions
diff --git a/static/logo/peach-114.png b/static/logo/peach-114.png Binary files differnew file mode 100644 index 0000000..4d68e12 --- /dev/null +++ b/static/logo/peach-114.png diff --git a/static/logo/peach-120.png b/static/logo/peach-120.png Binary files differnew file mode 100644 index 0000000..a75c693 --- /dev/null +++ b/static/logo/peach-120.png diff --git a/static/logo/peach-152.png b/static/logo/peach-152.png Binary files differnew file mode 100644 index 0000000..158d100 --- /dev/null +++ b/static/logo/peach-152.png diff --git a/static/logo/peach-16.png b/static/logo/peach-16.png Binary files differnew file mode 100644 index 0000000..3cea403 --- /dev/null +++ b/static/logo/peach-16.png diff --git a/static/logo/peach-167.png b/static/logo/peach-167.png Binary files differnew file mode 100644 index 0000000..eb654a5 --- /dev/null +++ b/static/logo/peach-167.png diff --git a/static/logo/peach-180.png b/static/logo/peach-180.png Binary files differnew file mode 100644 index 0000000..b77605f --- /dev/null +++ b/static/logo/peach-180.png diff --git a/static/logo/peach-32.png b/static/logo/peach-32.png Binary files differnew file mode 100644 index 0000000..693bf13 --- /dev/null +++ b/static/logo/peach-32.png diff --git a/static/logo/peach-48.png b/static/logo/peach-48.png Binary files differnew file mode 100644 index 0000000..cab5356 --- /dev/null +++ b/static/logo/peach-48.png diff --git a/static/logo/peach-58.png b/static/logo/peach-58.png Binary files differnew file mode 100644 index 0000000..4c5802c --- /dev/null +++ b/static/logo/peach-58.png diff --git a/static/logo/peach-76.png b/static/logo/peach-76.png Binary files differnew file mode 100644 index 0000000..49d5e87 --- /dev/null +++ b/static/logo/peach-76.png diff --git a/static/logo/peach-80.png b/static/logo/peach-80.png Binary files differnew file mode 100644 index 0000000..c0cbefd --- /dev/null +++ b/static/logo/peach-80.png diff --git a/static/logo/peach-87.png b/static/logo/peach-87.png Binary files differnew file mode 100644 index 0000000..52cf9dc --- /dev/null +++ b/static/logo/peach-87.png diff --git a/static/logo/peach.rkt b/static/logo/peach.rkt index 54e1382..ae0925e 100644 --- a/static/logo/peach.rkt +++ b/static/logo/peach.rkt @@ -50,5 +50,7 @@ (png-export logo-bitmap size))) ;Export logo to a PNG file. -;; Make 500x500 logo. -(make-logo 500) +;; Make logos in different sizes. +(begin + (let ((sizes '(16 32 48 58 76 80 87 114 120 152 167 120 180))) + (map make-logo sizes))) |