@quartz-themes/flexoki 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 +60 -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,60 @@
1
+ # License
2
+
3
+ The CSS theme data in this package is derived from the "Flexoki" theme
4
+ for Obsidian (https://obsidian.md) and is licensed under MIT 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 (MIT)
13
+
14
+ MIT License
15
+
16
+ Copyright (c) 2023 Steph Ango
17
+
18
+ Permission is hereby granted, free of charge, to any person obtaining a copy
19
+ of this software and associated documentation files (the "Software"), to deal
20
+ in the Software without restriction, including without limitation the rights
21
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
22
+ copies of the Software, and to permit persons to whom the Software is
23
+ furnished to do so, subject to the following conditions:
24
+
25
+ The above copyright notice and this permission notice shall be included in all
26
+ copies or substantial portions of the Software.
27
+
28
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
33
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34
+ SOFTWARE.
35
+
36
+ ---
37
+
38
+ ## Packaging License (MIT)
39
+
40
+ MIT License
41
+
42
+ Copyright (c) 2024-2026 quartz-themes contributors
43
+
44
+ Permission is hereby granted, free of charge, to any person obtaining a copy
45
+ of this software and associated documentation files (the "Software"), to deal
46
+ in the Software without restriction, including without limitation the rights
47
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
48
+ copies of the Software, and to permit persons to whom the Software is
49
+ furnished to do so, subject to the following conditions:
50
+
51
+ The above copyright notice and this permission notice shall be included in all
52
+ copies or substantial portions of the Software.
53
+
54
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
55
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
56
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
57
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
58
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
59
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
60
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Flexoki
2
+
3
+ Obsidian theme adapted for [Quartz](https://github.com/jackyzha0/quartz).
4
+
5
+ **Modes**: dark and light
6
+ **License**: MIT
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ npm install @quartz-themes/core @quartz-themes/flexoki
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```yaml
17
+ # quartz.config.yaml
18
+ plugins:
19
+ transformers:
20
+ - name: "@quartz-themes/core"
21
+ options:
22
+ theme: "flexoki"
23
+ mode: "both"
24
+ ```
25
+
26
+ ## Preview
27
+
28
+ [Live preview](https://quartz-themes.github.io/flexoki)
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@quartz-themes/flexoki",
3
+ "version": "1.0.0",
4
+ "description": "Flexoki 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
+ "flexoki"
20
+ ],
21
+ "license": "MIT",
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/quartz-themes/flexoki.git"
28
+ },
29
+ "homepage": "https://quartz-themes.github.io/flexoki"
30
+ }