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