cmdesigns 0.1.1 → 0.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmdesigns",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "An attempt at putting common chrissx Media design elements into a library.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -10,13 +10,7 @@ export interface Props {
10
10
  themecolor?: string;
11
11
  }
12
12
 
13
- let {
14
- title,
15
- favicon,
16
- lang,
17
- description,
18
- themecolor,
19
- } = Astro.props;
13
+ let { title, favicon, lang, description, themecolor } = Astro.props;
20
14
  ---
21
15
 
22
16
  <!doctype html>
@@ -29,6 +23,7 @@ let {
29
23
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
30
24
  {favicon && <Favicon src={favicon} />}
31
25
  <meta name="generator" content={Astro.generator} />
26
+ <meta name="darkreader-lock" />
32
27
  <link rel="stylesheet" href="https://fonts.chrissx.de/" />
33
28
  <title>{title}</title>
34
29
  <slot name="head" />
@@ -47,12 +42,14 @@ let {
47
42
  --fgorange: 192, 144, 64;
48
43
 
49
44
  --unifont: Unifont, Menlo, Monaco, "Lucida Console", "Liberation Mono",
50
- "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace;
45
+ "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New",
46
+ monospace;
51
47
  --minecraft: Minecraft, var(--unifont);
52
48
  --impact: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
53
49
  --woodcut: Woodcut, sans-serif;
54
- --sans-serif: system-ui, -apple-system, BlinkMacSystemFont, Inter, "Segoe UI",
55
- Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
50
+ --sans-serif: system-ui, -apple-system, BlinkMacSystemFont, Inter,
51
+ "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
52
+ "Helvetica Neue", sans-serif;
56
53
  }
57
54
 
58
55
  body {
package/src/FGText.astro CHANGED
@@ -1,5 +1,5 @@
1
1
  <span class="F">
2
- <span class="f">Fux</span>&nbsp;<span class="g">Games</span>
2
+ <span class="f">Fux</span>&nbsp;<span>Games</span>
3
3
  </span>
4
4
 
5
5
  <style>
@@ -11,8 +11,4 @@
11
11
  .f {
12
12
  color: rgb(var(--fgorange));
13
13
  }
14
-
15
- .g {
16
- color: white;
17
- }
18
14
  </style>