@monowind/themes 0.2.9 → 0.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,15 +4,15 @@ Themes for [monowind](https://github.com/benface/monowind) modeled on
4
4
  real systems — authentic palette, period font, and era-correct border
5
5
  characters, one CSS file each:
6
6
 
7
- | theme | system | font | borders |
8
- | ---------------- | -------------------------------- | -------------------------- | ----------------------------- |
9
- | `dos` | IBM PC text mode (VGA 16-color) | Px437 IBM VGA 8x16 | CP437 single + double |
10
- | `dos-blue` | the Norton/Turbo Vision look | Px437 IBM VGA 8x16 | CP437 single + double |
11
- | `green-phosphor` | P1 green monochrome terminal | Px437 IBM VGA 8x16 | single lines only (DEC-style) |
12
- | `amber` | P3 amber monochrome terminal | Px437 IBM VGA 8x16 | single lines only |
13
- | `c64` | Commodore 64 | bring your own (see below) | PETSCII-style rounded corners |
14
- | `teletype` | hard-copy terminal, ink on paper | Courier stack | 7-bit ascii (`+-\|`, `+=+`) |
15
- | `bbs` | dial-up BBS, ANSI art | Px437 IBM VGA 8x16 | CP437 blocks (`█`, `▒`/`░`) |
7
+ | theme | system | font | borders |
8
+ | ---------------- | -------------------------------- | ------------------------ | ----------------------------- |
9
+ | `dos` | IBM PC text mode (VGA 16-color) | Px437 IBM VGA 8x16 | CP437 single + double |
10
+ | `dos-blue` | the Norton/Turbo Vision look | Px437 IBM VGA 8x16 | CP437 single + double |
11
+ | `green-phosphor` | P1 green monochrome terminal | Px437 IBM VGA 8x16 | single lines only (DEC-style) |
12
+ | `amber` | P3 amber monochrome terminal | Px437 IBM VGA 8x16 | single lines only |
13
+ | `c64` | Commodore 64 | Pet Me 64 (square cells) | PETSCII-style rounded corners |
14
+ | `teletype` | hard-copy terminal, ink on paper | Courier stack | 7-bit ascii (`+-\|`, `+=+`) |
15
+ | `bbs` | dial-up BBS, ANSI art | Px437 IBM VGA 8x16 | CP437 blocks (`█`, `▒`/`░`) |
16
16
 
17
17
  ## Usage
18
18
 
@@ -61,6 +61,8 @@ cells).
61
61
  The PC-era themes ship "Px437 IBM VGA 8x16" from the
62
62
  [Ultimate Oldschool PC Font Pack](https://int10h.org/oldschool-pc-fonts/)
63
63
  (© VileR, CC BY-SA 4.0 — license in `fonts/LICENSES/`). The `c64`
64
- theme ships no font: the canonical C64 faces forbid redistribution —
65
- add your own `@font-face` (e.g. Style64's C64 TrueType, licensed for
66
- personal use) and set `font-family` on the themed host.
64
+ theme ships "Pet Me 64" from Kreative Korp's
65
+ [Commodore font set](https://www.kreativekorp.com/software/fonts/c64/)
66
+ Kreative Software, Relay Fonts Free Use License — license in
67
+ `fonts/LICENSES/`, the file unmodified as it requires): the C64's
68
+ 8×8 character cell, so its cells are square.
@@ -4,3 +4,9 @@
4
4
  Oldschool PC Font Pack v2.2 (https://int10h.org/oldschool-pc-fonts/),
5
5
  © 2016-2020 VileR, licensed CC BY-SA 4.0 (full text in
6
6
  oldschool-pc-fonts-LICENSE.txt).
7
+ - `PetMe64.ttf` — "Pet Me 64" from Kreative Korp's Commodore font set
8
+ (https://www.kreativekorp.com/software/fonts/c64/), © Kreative
9
+ Software / Rebecca G. Bettencourt, Kreative Software Relay Fonts
10
+ Free Use License v1.2f (full text in
11
+ kreative-relay-fonts-LICENSE.txt): redistributable unmodified with
12
+ this license and credit.
@@ -0,0 +1,20 @@
1
+ KREATIVE SOFTWARE RELAY FONTS FREE USE LICENSE
2
+ version 1.2f
3
+
4
+ Permission is hereby granted, free of charge, to any person or entity (the "User") obtaining a copy of the included font files (the "Software") produced by Kreative Software, to utilize, display, embed, or redistribute the Software, subject to the following conditions:
5
+
6
+ 1. The User may not sell copies of the Software for a fee.
7
+
8
+ 1a. The User may give away copies of the Software free of charge provided this license and any documentation is included verbatim and credit is given to Kreative Korporation or Kreative Software.
9
+
10
+ 2. The User may not modify, reverse-engineer, or create any derivative works of the Software.
11
+
12
+ 3. Any Software carrying the following font names or variations thereof is not covered by this license and may not be used under the terms of this license: Jewel Hill, Miss Diode n Friends, This is Beckie's font!
13
+
14
+ 3a. Any Software carrying a font name ending with the string "Pro CE" is not covered by this license and may not be used under the terms of this license.
15
+
16
+ 4. This license becomes null and void if any of the above conditions are not met.
17
+
18
+ 5. Kreative Software reserves the right to change this license at any time without notice.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE SOFTWARE OR FROM OTHER DEALINGS IN THE SOFTWARE.
Binary file
@@ -0,0 +1,9 @@
1
+ @font-face {
2
+ /* "Pet Me 64" from Kreative Korp's Commodore font set
3
+ * (kreativekorp.com/software/fonts/c64/, Kreative Software Relay
4
+ * Fonts Free Use License — see LICENSES), shipped unmodified as the
5
+ * license requires. Native bitmap size 8px: keep font-size at
6
+ * integer multiples for crisp cells. */
7
+ font-family: "Pet Me 64";
8
+ src: url("./PetMe64.ttf") format("truetype");
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monowind/themes",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "Themes for monowind modeled on real systems: DOS, C64, phosphor terminals — palettes, period fonts, era-correct border glyphs",
5
5
  "keywords": [
6
6
  "c64",
package/themes/c64.css CHANGED
@@ -1,15 +1,15 @@
1
1
  /* @monowind/themes — c64: Commodore 64, light blue on blue with
2
- * PETSCII-style rounded corners. Apply with class "theme-c64" on a
3
- * <mono-wind> or any wrapper. No period font ships (the canonical C64
4
- * faces forbid redistribution) bring your own via @font-face and
5
- * set font-family on the themed host. */
2
+ * PETSCII-style rounded corners, in Kreative Korp's Pet Me 64 (the
3
+ * 8×8 character cell, square at 16px). Apply with class "theme-c64"
4
+ * on a <mono-wind> or any wrapper. */
6
5
  @import "./c64.palette.css";
6
+ @import "../fonts/petme-font.css";
7
7
 
8
8
  @layer base {
9
9
  mono-wind.theme-c64,
10
10
  .theme-c64 mono-wind {
11
- font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
12
- font-size: 14px;
11
+ font-family: "Pet Me 64", ui-monospace, SFMono-Regular, Menlo, monospace;
12
+ font-size: 16px;
13
13
  line-height: 1;
14
14
  background-color: #40318d;
15
15
  color: #7869c4;