diff options
| author | Devine Lu Linvega <aliceffekt@gmail.com> | 2020-02-13 09:09:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-13 09:09:28 -0500 |
| commit | 7377cb451556064bdc916fb25cbaa086e10aca44 (patch) | |
| tree | 539f9819f0b8d4e601bc1e079f4f417e707b402f | |
| parent | c02af7532a1a3b2756e91d0eb57d3f1c1a6333b8 (diff) | |
| parent | e5523059acbd15c44bd983f2f7aadf3ee8c4d671 (diff) | |
Merge pull request #43 from tong/new-palettes
add gameboy, teletext palette
| -rw-r--r-- | themes/gameboy.svg | 13 | ||||
| -rw-r--r-- | themes/teletext.svg | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/themes/gameboy.svg b/themes/gameboy.svg new file mode 100644 index 0000000..e533f6a --- /dev/null +++ b/themes/gameboy.svg @@ -0,0 +1,13 @@ +<svg width="96px" height="64px" xmlns="http://www.w3.org/2000/svg" baseProfile="full" version="1.1"> + <rect width='96' height='64' id='background' fill='#9BBC0F'></rect> + <!-- Foreground --> + <circle cx='24' cy='24' r='8' id='f_high' fill='#0F380F'></circle> + <circle cx='40' cy='24' r='8' id='f_med' fill='#0F380F'></circle> + <circle cx='56' cy='24' r='8' id='f_low' fill='#306230'></circle> + <circle cx='72' cy='24' r='8' id='f_inv' fill='#9BBC0F'></circle> + <!-- Background --> + <circle cx='24' cy='40' r='8' id='b_high' fill='#8BAC0F'></circle> + <circle cx='40' cy='40' r='8' id='b_med' fill='#8BAC0F'></circle> + <circle cx='56' cy='40' r='8' id='b_low' fill='#9BBC0F'></circle> + <circle cx='72' cy='40' r='8' id='b_inv' fill='#0F380F'></circle> +</svg>
\ No newline at end of file diff --git a/themes/teletext.svg b/themes/teletext.svg new file mode 100644 index 0000000..a27fd62 --- /dev/null +++ b/themes/teletext.svg @@ -0,0 +1,13 @@ +<svg width="96px" height="64px" xmlns="http://www.w3.org/2000/svg" baseProfile="full" version="1.1"> + <rect width='96' height='64' id='background' fill='#000000'></rect> + <!-- Foreground --> + <circle cx='24' cy='24' r='8' id='f_high' fill='#ffffff'></circle> + <circle cx='40' cy='24' r='8' id='f_med' fill='#ffff00'></circle> + <circle cx='56' cy='24' r='8' id='f_low' fill='#00FF00'></circle> + <circle cx='72' cy='24' r='8' id='f_inv' fill='#000000'></circle> + <!-- Background --> + <circle cx='24' cy='40' r='8' id='b_high' fill='#ff00ff'></circle> + <circle cx='40' cy='40' r='8' id='b_med' fill='#ff0000'></circle> + <circle cx='56' cy='40' r='8' id='b_low' fill='#0000ff'></circle> + <circle cx='72' cy='40' r='8' id='b_inv' fill='#ffffff'></circle> +</svg>
\ No newline at end of file |
