cmdesigns 0.1.3 → 0.1.4

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 chrissx Media
3
+ Copyright (c) 2023-present chrissx Media
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,3 +1,6 @@
1
1
  # CM Designs
2
2
 
3
3
  An attempt at putting common chrissx Media design elements into a library.
4
+
5
+ The code is MIT licensed, but usage of `CMText`, `FGText`, etc is a trademark
6
+ violation.
package/index.ts CHANGED
@@ -1,6 +1,7 @@
1
+ import MinimalLayout from "./src/MinimalLayout.astro";
1
2
  import BaseLayout from "./src/BaseLayout.astro";
2
3
  import CMText from "./src/CMText.astro";
3
4
  import FGText from "./src/FGText.astro";
4
5
  import Footer from "./src/Footer.astro";
5
6
 
6
- export { BaseLayout, CMText, FGText, Footer };
7
+ export { MinimalLayout, BaseLayout, CMText, FGText, Footer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmdesigns",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "An attempt at putting common chrissx Media design elements into a library.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -33,5 +33,6 @@ const { title, favicon, lang, description, themecolor } = Astro.props;
33
33
  font-family: var(--unifont);
34
34
  color: white;
35
35
  background-color: black;
36
+ color-scheme: dark;
36
37
  }
37
38
  </style>