@quartz-themes/ethereon 1.0.0

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.
Files changed (4) hide show
  1. package/LICENSE +713 -0
  2. package/README.md +28 -0
  3. package/package.json +30 -0
  4. package/theme.json +454 -0
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Ethereon
2
+
3
+ Obsidian theme adapted for [Quartz](https://github.com/jackyzha0/quartz).
4
+
5
+ **Modes**: dark and light
6
+ **License**: GPL-3.0
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ npm install @quartz-themes/core @quartz-themes/ethereon
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```yaml
17
+ # quartz.config.yaml
18
+ plugins:
19
+ transformers:
20
+ - name: "@quartz-themes/core"
21
+ options:
22
+ theme: "ethereon"
23
+ mode: "both"
24
+ ```
25
+
26
+ ## Preview
27
+
28
+ [Live preview](https://quartz-themes.github.io/ethereon)
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@quartz-themes/ethereon",
3
+ "version": "1.0.0",
4
+ "description": "Ethereon theme for Quartz",
5
+ "main": "./theme.json",
6
+ "exports": {
7
+ ".": "./theme.json",
8
+ "./package.json": "./package.json"
9
+ },
10
+ "files": [
11
+ "theme.json",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "keywords": [
16
+ "quartz",
17
+ "quartz-theme",
18
+ "obsidian",
19
+ "ethereon"
20
+ ],
21
+ "license": "GPL-3.0",
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/quartz-themes/ethereon.git"
28
+ },
29
+ "homepage": "https://quartz-themes.github.io/ethereon"
30
+ }