@quartz-themes/enhanced-file-explorer-tree 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 +63 -0
  2. package/README.md +28 -0
  3. package/package.json +30 -0
  4. package/theme.json +451 -0
package/LICENSE ADDED
@@ -0,0 +1,63 @@
1
+ # License
2
+
3
+ The CSS theme data in this package is derived from the "Enhanced File Explorer Tree" theme
4
+ for Obsidian (https://obsidian.md) and is licensed under Unlicense by the
5
+ original theme author(s).
6
+
7
+ The packaging, tooling, and adaptation for Quartz are provided by the
8
+ quartz-themes project (https://github.com/quartz-themes) under the MIT License.
9
+
10
+ ---
11
+
12
+ ## Original Theme License (Unlicense)
13
+
14
+ This is free and unencumbered software released into the public domain.
15
+
16
+ Anyone is free to copy, modify, publish, use, compile, sell, or
17
+ distribute this software, either in source code form or as a compiled
18
+ binary, for any purpose, commercial or non-commercial, and by any
19
+ means.
20
+
21
+ In jurisdictions that recognize copyright laws, the author or authors
22
+ of this software dedicate any and all copyright interest in the
23
+ software to the public domain. We make this dedication for the benefit
24
+ of the public at large and to the detriment of our heirs and
25
+ successors. We intend this dedication to be an overt act of
26
+ relinquishment in perpetuity of all present and future rights to this
27
+ software under copyright law.
28
+
29
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
32
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
33
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
34
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
35
+ OTHER DEALINGS IN THE SOFTWARE.
36
+
37
+ For more information, please refer to <https://unlicense.org/>
38
+
39
+ ---
40
+
41
+ ## Packaging License (MIT)
42
+
43
+ MIT License
44
+
45
+ Copyright (c) 2024-2026 quartz-themes contributors
46
+
47
+ Permission is hereby granted, free of charge, to any person obtaining a copy
48
+ of this software and associated documentation files (the "Software"), to deal
49
+ in the Software without restriction, including without limitation the rights
50
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
51
+ copies of the Software, and to permit persons to whom the Software is
52
+ furnished to do so, subject to the following conditions:
53
+
54
+ The above copyright notice and this permission notice shall be included in all
55
+ copies or substantial portions of the Software.
56
+
57
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
58
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
59
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
60
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
61
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
62
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
63
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Enhanced File Explorer Tree
2
+
3
+ Obsidian theme adapted for [Quartz](https://github.com/jackyzha0/quartz).
4
+
5
+ **Modes**: dark and light
6
+ **License**: Unlicense
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ npm install @quartz-themes/core @quartz-themes/enhanced-file-explorer-tree
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```yaml
17
+ # quartz.config.yaml
18
+ plugins:
19
+ transformers:
20
+ - name: "@quartz-themes/core"
21
+ options:
22
+ theme: "enhanced-file-explorer-tree"
23
+ mode: "both"
24
+ ```
25
+
26
+ ## Preview
27
+
28
+ [Live preview](https://quartz-themes.github.io/enhanced-file-explorer-tree)
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@quartz-themes/enhanced-file-explorer-tree",
3
+ "version": "1.0.0",
4
+ "description": "Enhanced File Explorer Tree 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
+ "enhanced-file-explorer-tree"
20
+ ],
21
+ "license": "Unlicense",
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/quartz-themes/enhanced-file-explorer-tree.git"
28
+ },
29
+ "homepage": "https://quartz-themes.github.io/enhanced-file-explorer-tree"
30
+ }