@ox-content/theme-color-zenburn 2.84.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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 ubugeeei
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # @ox-content/theme-color-zenburn
2
+
3
+ Zenburn — The classic low-contrast scheme for long sessions — for [Ox Content](https://github.com/ubugeeei-prod/ox-content).
4
+
5
+ **Color only.** Light and dark `--octc-*` tokens and nothing else: no layout, no
6
+ texture, no typography. That is what lets it drop under any skin package.
7
+
8
+ ```bash
9
+ npm install @ox-content/theme-color-zenburn
10
+ ```
11
+
12
+ ```ts
13
+ // vite.config.ts
14
+ import { defineConfig } from "vite";
15
+ import { oxContent } from "@ox-content/vite-plugin";
16
+ import zenburn from "@ox-content/theme-color-zenburn";
17
+
18
+ export default defineConfig({
19
+ plugins: [
20
+ oxContent({
21
+ srcDir: "docs",
22
+ ssg: { siteName: "My Docs", theme: zenburn },
23
+ }),
24
+ ],
25
+ });
26
+ ```
27
+
28
+ Stack a skin on top to change the form as well — layers compose left to right,
29
+ so anything you append wins:
30
+
31
+ ```ts
32
+ import pixel from "@ox-content/theme-pixel";
33
+
34
+ theme: [pixel, zenburn, { colors: { primary: "#ff5f56" } }];
35
+ ```
36
+
37
+ ## License
38
+
39
+ MIT
package/dist/index.cjs ADDED
@@ -0,0 +1,148 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ //#region src/index.ts
6
+ /**
7
+ * Zenburn — The classic low-contrast scheme for long sessions.
8
+ *
9
+ * Color only: no layout, no texture, no typography. Compose it under any
10
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
11
+ *
12
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
13
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
14
+ */
15
+ const zenburn = {
16
+ name: "zenburn",
17
+ colors: {
18
+ primary: "#62704b",
19
+ primaryHover: "#53603f",
20
+ background: "#f4f4ec",
21
+ backgroundAlt: "#e8e8dc",
22
+ text: "#33322c",
23
+ textMuted: "#6b6a5e",
24
+ border: "#d4d3c4",
25
+ codeBackground: "#3f3f3f",
26
+ codeBackgroundTop: "#3f3f3f",
27
+ codeText: "#dcdccc"
28
+ },
29
+ darkColors: {
30
+ primary: "#8cd0d3",
31
+ primaryHover: "#b0e0e3",
32
+ background: "#3f3f3f",
33
+ backgroundAlt: "#4a4a4a",
34
+ text: "#dcdccc",
35
+ textMuted: "#abab9c",
36
+ border: "#585858",
37
+ codeBackground: "#383838",
38
+ codeBackgroundTop: "#383838",
39
+ codeText: "#dcdccc"
40
+ },
41
+ tokens: {
42
+ "color-code-line-highlight": "color-mix(in srgb, #5b6f88 16%, transparent)",
43
+ "color-code-line-warning": "color-mix(in srgb, #8a7444 18%, transparent)",
44
+ "color-code-line-warning-border": "#8a7444",
45
+ "color-code-line-error": "color-mix(in srgb, #9d5b52 20%, transparent)",
46
+ "color-code-line-error-border": "#9d5b52",
47
+ "color-code-line-add": "color-mix(in srgb, #6a7a52 16%, transparent)",
48
+ "color-code-line-add-border": "#6a7a52",
49
+ "color-code-line-remove": "color-mix(in srgb, #9d5b52 14%, transparent)",
50
+ "color-code-line-remove-border": "#9d5b52",
51
+ "color-code-line-focus": "color-mix(in srgb, #62704b 16%, transparent)",
52
+ "color-code-line-dim": "0.45",
53
+ "color-code-title-bg": "color-mix(in srgb, #3f3f3f 92%, #dcdccc)",
54
+ "color-code-title-text": "color-mix(in srgb, #dcdccc 88%, #3f3f3f)",
55
+ "color-code-title-border": "color-mix(in srgb, #dcdccc 22%, transparent)",
56
+ "color-code-line-number": "color-mix(in srgb, #dcdccc 48%, transparent)",
57
+ "color-code-frame-border": "color-mix(in srgb, #d4d3c4 92%, transparent)",
58
+ "color-backdrop": "rgba(85, 85, 83, 0.62)",
59
+ "surface-glass": "color-mix(in srgb, #e8e8dc 62%, #f4f4ec)",
60
+ "surface-line": "color-mix(in srgb, #d4d3c4 72%, #f4f4ec)",
61
+ "brand-violet": "#7d5f7a",
62
+ "brand-cyan": "#4f7570",
63
+ "brand-lime": "#6a7a52",
64
+ "brand-coral": "#9d5b52",
65
+ "brand-navy": "color-mix(in srgb, #33322c 70%, #f4f4ec)",
66
+ "brand-violet-rgb": "125, 95, 122",
67
+ "brand-cyan-rgb": "79, 117, 112",
68
+ "brand-lime-rgb": "106, 122, 82",
69
+ "brand-coral-rgb": "157, 91, 82",
70
+ "accent-a": "#62704b",
71
+ "accent-b": "#7d5f7a",
72
+ "accent-c": "#4f7570",
73
+ "accent-warm": "#8a7444",
74
+ "accent-cool": "#5b6f88",
75
+ "accent-a-ink": "#62704b",
76
+ "accent-b-ink": "#7d5f7a",
77
+ "accent-c-ink": "#4f7570",
78
+ "accent-warm-ink": "#7f6b3f",
79
+ "accent-cool-ink": "#5b6f88",
80
+ "accent-coral-ink": "#9d5b52",
81
+ "shiki-foreground": "#dcdccc",
82
+ "shiki-background": "#3f3f3f",
83
+ "shiki-token-comment": "color-mix(in srgb, #dcdccc 55%, #3f3f3f)",
84
+ "shiki-token-punctuation": "color-mix(in srgb, #dcdccc 72%, #3f3f3f)",
85
+ "shiki-token-keyword": "#dc8cc3",
86
+ "shiki-token-string": "#7f9f7f",
87
+ "shiki-token-string-expression": "#7f9f7f",
88
+ "shiki-token-constant": "#f0dfaf",
89
+ "shiki-token-function": "#8cd0d3",
90
+ "shiki-token-parameter": "#cc9393",
91
+ "shiki-token-link": "#93e0e3"
92
+ },
93
+ darkTokens: {
94
+ "color-code-line-highlight": "color-mix(in srgb, #8cd0d3 16%, transparent)",
95
+ "color-code-line-warning": "color-mix(in srgb, #f0dfaf 18%, transparent)",
96
+ "color-code-line-warning-border": "#f0dfaf",
97
+ "color-code-line-error": "color-mix(in srgb, #cc9393 20%, transparent)",
98
+ "color-code-line-error-border": "#cc9393",
99
+ "color-code-line-add": "color-mix(in srgb, #7f9f7f 16%, transparent)",
100
+ "color-code-line-add-border": "#7f9f7f",
101
+ "color-code-line-remove": "color-mix(in srgb, #cc9393 14%, transparent)",
102
+ "color-code-line-remove-border": "#cc9393",
103
+ "color-code-line-focus": "color-mix(in srgb, #8cd0d3 16%, transparent)",
104
+ "color-code-line-dim": "0.35",
105
+ "color-code-title-bg": "color-mix(in srgb, #383838 92%, #dcdccc)",
106
+ "color-code-title-text": "color-mix(in srgb, #dcdccc 88%, #383838)",
107
+ "color-code-title-border": "color-mix(in srgb, #dcdccc 22%, transparent)",
108
+ "color-code-line-number": "color-mix(in srgb, #dcdccc 48%, transparent)",
109
+ "color-code-frame-border": "color-mix(in srgb, #585858 92%, transparent)",
110
+ "color-backdrop": "rgba(22, 22, 22, 0.62)",
111
+ "surface-glass": "color-mix(in srgb, #4a4a4a 62%, #3f3f3f)",
112
+ "surface-line": "color-mix(in srgb, #585858 72%, #3f3f3f)",
113
+ "brand-violet": "#dc8cc3",
114
+ "brand-cyan": "#93e0e3",
115
+ "brand-lime": "#7f9f7f",
116
+ "brand-coral": "#cc9393",
117
+ "brand-navy": "color-mix(in srgb, #dcdccc 70%, #3f3f3f)",
118
+ "brand-violet-rgb": "220, 140, 195",
119
+ "brand-cyan-rgb": "147, 224, 227",
120
+ "brand-lime-rgb": "127, 159, 127",
121
+ "brand-coral-rgb": "204, 147, 147",
122
+ "accent-a": "#8cd0d3",
123
+ "accent-b": "#dc8cc3",
124
+ "accent-c": "#93e0e3",
125
+ "accent-warm": "#f0dfaf",
126
+ "accent-cool": "#8cd0d3",
127
+ "accent-a-ink": "#8cd0d3",
128
+ "accent-b-ink": "#df95c8",
129
+ "accent-c-ink": "#93e0e3",
130
+ "accent-warm-ink": "#f0dfaf",
131
+ "accent-cool-ink": "#8cd0d3",
132
+ "accent-coral-ink": "#d2a0a0",
133
+ "shiki-foreground": "#dcdccc",
134
+ "shiki-background": "#383838",
135
+ "shiki-token-comment": "color-mix(in srgb, #dcdccc 55%, #383838)",
136
+ "shiki-token-punctuation": "color-mix(in srgb, #dcdccc 72%, #383838)",
137
+ "shiki-token-keyword": "#dc8cc3",
138
+ "shiki-token-string": "#7f9f7f",
139
+ "shiki-token-string-expression": "#7f9f7f",
140
+ "shiki-token-constant": "#f0dfaf",
141
+ "shiki-token-function": "#8cd0d3",
142
+ "shiki-token-parameter": "#cc9393",
143
+ "shiki-token-link": "#93e0e3"
144
+ }
145
+ };
146
+ //#endregion
147
+ exports.default = zenburn;
148
+ exports.zenburn = zenburn;
@@ -0,0 +1,15 @@
1
+ import { ThemeConfig } from "@ox-content/vite-plugin";
2
+ //#region src/index.d.ts
3
+ /**
4
+ * Zenburn — The classic low-contrast scheme for long sessions.
5
+ *
6
+ * Color only: no layout, no texture, no typography. Compose it under any
7
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
8
+ *
9
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
10
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
11
+ */
12
+ declare const zenburn: ThemeConfig;
13
+ //#endregion
14
+ export { zenburn as default, zenburn };
15
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,SAAS"}
@@ -0,0 +1,15 @@
1
+ import { ThemeConfig } from "@ox-content/vite-plugin";
2
+ //#region src/index.d.ts
3
+ /**
4
+ * Zenburn — The classic low-contrast scheme for long sessions.
5
+ *
6
+ * Color only: no layout, no texture, no typography. Compose it under any
7
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
8
+ *
9
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
10
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
11
+ */
12
+ declare const zenburn: ThemeConfig;
13
+ //#endregion
14
+ export { zenburn as default, zenburn };
15
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,SAAS"}
package/dist/index.mjs ADDED
@@ -0,0 +1,145 @@
1
+ //#region src/index.ts
2
+ /**
3
+ * Zenburn — The classic low-contrast scheme for long sessions.
4
+ *
5
+ * Color only: no layout, no texture, no typography. Compose it under any
6
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
7
+ *
8
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
9
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
10
+ */
11
+ const zenburn = {
12
+ name: "zenburn",
13
+ colors: {
14
+ primary: "#62704b",
15
+ primaryHover: "#53603f",
16
+ background: "#f4f4ec",
17
+ backgroundAlt: "#e8e8dc",
18
+ text: "#33322c",
19
+ textMuted: "#6b6a5e",
20
+ border: "#d4d3c4",
21
+ codeBackground: "#3f3f3f",
22
+ codeBackgroundTop: "#3f3f3f",
23
+ codeText: "#dcdccc"
24
+ },
25
+ darkColors: {
26
+ primary: "#8cd0d3",
27
+ primaryHover: "#b0e0e3",
28
+ background: "#3f3f3f",
29
+ backgroundAlt: "#4a4a4a",
30
+ text: "#dcdccc",
31
+ textMuted: "#abab9c",
32
+ border: "#585858",
33
+ codeBackground: "#383838",
34
+ codeBackgroundTop: "#383838",
35
+ codeText: "#dcdccc"
36
+ },
37
+ tokens: {
38
+ "color-code-line-highlight": "color-mix(in srgb, #5b6f88 16%, transparent)",
39
+ "color-code-line-warning": "color-mix(in srgb, #8a7444 18%, transparent)",
40
+ "color-code-line-warning-border": "#8a7444",
41
+ "color-code-line-error": "color-mix(in srgb, #9d5b52 20%, transparent)",
42
+ "color-code-line-error-border": "#9d5b52",
43
+ "color-code-line-add": "color-mix(in srgb, #6a7a52 16%, transparent)",
44
+ "color-code-line-add-border": "#6a7a52",
45
+ "color-code-line-remove": "color-mix(in srgb, #9d5b52 14%, transparent)",
46
+ "color-code-line-remove-border": "#9d5b52",
47
+ "color-code-line-focus": "color-mix(in srgb, #62704b 16%, transparent)",
48
+ "color-code-line-dim": "0.45",
49
+ "color-code-title-bg": "color-mix(in srgb, #3f3f3f 92%, #dcdccc)",
50
+ "color-code-title-text": "color-mix(in srgb, #dcdccc 88%, #3f3f3f)",
51
+ "color-code-title-border": "color-mix(in srgb, #dcdccc 22%, transparent)",
52
+ "color-code-line-number": "color-mix(in srgb, #dcdccc 48%, transparent)",
53
+ "color-code-frame-border": "color-mix(in srgb, #d4d3c4 92%, transparent)",
54
+ "color-backdrop": "rgba(85, 85, 83, 0.62)",
55
+ "surface-glass": "color-mix(in srgb, #e8e8dc 62%, #f4f4ec)",
56
+ "surface-line": "color-mix(in srgb, #d4d3c4 72%, #f4f4ec)",
57
+ "brand-violet": "#7d5f7a",
58
+ "brand-cyan": "#4f7570",
59
+ "brand-lime": "#6a7a52",
60
+ "brand-coral": "#9d5b52",
61
+ "brand-navy": "color-mix(in srgb, #33322c 70%, #f4f4ec)",
62
+ "brand-violet-rgb": "125, 95, 122",
63
+ "brand-cyan-rgb": "79, 117, 112",
64
+ "brand-lime-rgb": "106, 122, 82",
65
+ "brand-coral-rgb": "157, 91, 82",
66
+ "accent-a": "#62704b",
67
+ "accent-b": "#7d5f7a",
68
+ "accent-c": "#4f7570",
69
+ "accent-warm": "#8a7444",
70
+ "accent-cool": "#5b6f88",
71
+ "accent-a-ink": "#62704b",
72
+ "accent-b-ink": "#7d5f7a",
73
+ "accent-c-ink": "#4f7570",
74
+ "accent-warm-ink": "#7f6b3f",
75
+ "accent-cool-ink": "#5b6f88",
76
+ "accent-coral-ink": "#9d5b52",
77
+ "shiki-foreground": "#dcdccc",
78
+ "shiki-background": "#3f3f3f",
79
+ "shiki-token-comment": "color-mix(in srgb, #dcdccc 55%, #3f3f3f)",
80
+ "shiki-token-punctuation": "color-mix(in srgb, #dcdccc 72%, #3f3f3f)",
81
+ "shiki-token-keyword": "#dc8cc3",
82
+ "shiki-token-string": "#7f9f7f",
83
+ "shiki-token-string-expression": "#7f9f7f",
84
+ "shiki-token-constant": "#f0dfaf",
85
+ "shiki-token-function": "#8cd0d3",
86
+ "shiki-token-parameter": "#cc9393",
87
+ "shiki-token-link": "#93e0e3"
88
+ },
89
+ darkTokens: {
90
+ "color-code-line-highlight": "color-mix(in srgb, #8cd0d3 16%, transparent)",
91
+ "color-code-line-warning": "color-mix(in srgb, #f0dfaf 18%, transparent)",
92
+ "color-code-line-warning-border": "#f0dfaf",
93
+ "color-code-line-error": "color-mix(in srgb, #cc9393 20%, transparent)",
94
+ "color-code-line-error-border": "#cc9393",
95
+ "color-code-line-add": "color-mix(in srgb, #7f9f7f 16%, transparent)",
96
+ "color-code-line-add-border": "#7f9f7f",
97
+ "color-code-line-remove": "color-mix(in srgb, #cc9393 14%, transparent)",
98
+ "color-code-line-remove-border": "#cc9393",
99
+ "color-code-line-focus": "color-mix(in srgb, #8cd0d3 16%, transparent)",
100
+ "color-code-line-dim": "0.35",
101
+ "color-code-title-bg": "color-mix(in srgb, #383838 92%, #dcdccc)",
102
+ "color-code-title-text": "color-mix(in srgb, #dcdccc 88%, #383838)",
103
+ "color-code-title-border": "color-mix(in srgb, #dcdccc 22%, transparent)",
104
+ "color-code-line-number": "color-mix(in srgb, #dcdccc 48%, transparent)",
105
+ "color-code-frame-border": "color-mix(in srgb, #585858 92%, transparent)",
106
+ "color-backdrop": "rgba(22, 22, 22, 0.62)",
107
+ "surface-glass": "color-mix(in srgb, #4a4a4a 62%, #3f3f3f)",
108
+ "surface-line": "color-mix(in srgb, #585858 72%, #3f3f3f)",
109
+ "brand-violet": "#dc8cc3",
110
+ "brand-cyan": "#93e0e3",
111
+ "brand-lime": "#7f9f7f",
112
+ "brand-coral": "#cc9393",
113
+ "brand-navy": "color-mix(in srgb, #dcdccc 70%, #3f3f3f)",
114
+ "brand-violet-rgb": "220, 140, 195",
115
+ "brand-cyan-rgb": "147, 224, 227",
116
+ "brand-lime-rgb": "127, 159, 127",
117
+ "brand-coral-rgb": "204, 147, 147",
118
+ "accent-a": "#8cd0d3",
119
+ "accent-b": "#dc8cc3",
120
+ "accent-c": "#93e0e3",
121
+ "accent-warm": "#f0dfaf",
122
+ "accent-cool": "#8cd0d3",
123
+ "accent-a-ink": "#8cd0d3",
124
+ "accent-b-ink": "#df95c8",
125
+ "accent-c-ink": "#93e0e3",
126
+ "accent-warm-ink": "#f0dfaf",
127
+ "accent-cool-ink": "#8cd0d3",
128
+ "accent-coral-ink": "#d2a0a0",
129
+ "shiki-foreground": "#dcdccc",
130
+ "shiki-background": "#383838",
131
+ "shiki-token-comment": "color-mix(in srgb, #dcdccc 55%, #383838)",
132
+ "shiki-token-punctuation": "color-mix(in srgb, #dcdccc 72%, #383838)",
133
+ "shiki-token-keyword": "#dc8cc3",
134
+ "shiki-token-string": "#7f9f7f",
135
+ "shiki-token-string-expression": "#7f9f7f",
136
+ "shiki-token-constant": "#f0dfaf",
137
+ "shiki-token-function": "#8cd0d3",
138
+ "shiki-token-parameter": "#cc9393",
139
+ "shiki-token-link": "#93e0e3"
140
+ }
141
+ };
142
+ //#endregion
143
+ export { zenburn as default, zenburn };
144
+
145
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Zenburn — The classic low-contrast scheme for long sessions.\n *\n * Color only: no layout, no texture, no typography. Compose it under any\n * `@ox-content/theme-*` skin, or use it on its own over the default theme.\n *\n * Generated from `scripts/theme-colors/palettes.json`; edit that file and run\n * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.\n */\nexport const zenburn: ThemeConfig = {\n name: \"zenburn\",\n colors: {\n primary: \"#62704b\",\n primaryHover: \"#53603f\",\n background: \"#f4f4ec\",\n backgroundAlt: \"#e8e8dc\",\n text: \"#33322c\",\n textMuted: \"#6b6a5e\",\n border: \"#d4d3c4\",\n codeBackground: \"#3f3f3f\",\n codeBackgroundTop: \"#3f3f3f\",\n codeText: \"#dcdccc\",\n },\n darkColors: {\n primary: \"#8cd0d3\",\n primaryHover: \"#b0e0e3\",\n background: \"#3f3f3f\",\n backgroundAlt: \"#4a4a4a\",\n text: \"#dcdccc\",\n textMuted: \"#abab9c\",\n border: \"#585858\",\n codeBackground: \"#383838\",\n codeBackgroundTop: \"#383838\",\n codeText: \"#dcdccc\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #5b6f88 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #8a7444 18%, transparent)\",\n \"color-code-line-warning-border\": \"#8a7444\",\n \"color-code-line-error\": \"color-mix(in srgb, #9d5b52 20%, transparent)\",\n \"color-code-line-error-border\": \"#9d5b52\",\n \"color-code-line-add\": \"color-mix(in srgb, #6a7a52 16%, transparent)\",\n \"color-code-line-add-border\": \"#6a7a52\",\n \"color-code-line-remove\": \"color-mix(in srgb, #9d5b52 14%, transparent)\",\n \"color-code-line-remove-border\": \"#9d5b52\",\n \"color-code-line-focus\": \"color-mix(in srgb, #62704b 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #3f3f3f 92%, #dcdccc)\",\n \"color-code-title-text\": \"color-mix(in srgb, #dcdccc 88%, #3f3f3f)\",\n \"color-code-title-border\": \"color-mix(in srgb, #dcdccc 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #dcdccc 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #d4d3c4 92%, transparent)\",\n \"color-backdrop\": \"rgba(85, 85, 83, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #e8e8dc 62%, #f4f4ec)\",\n \"surface-line\": \"color-mix(in srgb, #d4d3c4 72%, #f4f4ec)\",\n \"brand-violet\": \"#7d5f7a\",\n \"brand-cyan\": \"#4f7570\",\n \"brand-lime\": \"#6a7a52\",\n \"brand-coral\": \"#9d5b52\",\n \"brand-navy\": \"color-mix(in srgb, #33322c 70%, #f4f4ec)\",\n \"brand-violet-rgb\": \"125, 95, 122\",\n \"brand-cyan-rgb\": \"79, 117, 112\",\n \"brand-lime-rgb\": \"106, 122, 82\",\n \"brand-coral-rgb\": \"157, 91, 82\",\n \"accent-a\": \"#62704b\",\n \"accent-b\": \"#7d5f7a\",\n \"accent-c\": \"#4f7570\",\n \"accent-warm\": \"#8a7444\",\n \"accent-cool\": \"#5b6f88\",\n \"accent-a-ink\": \"#62704b\",\n \"accent-b-ink\": \"#7d5f7a\",\n \"accent-c-ink\": \"#4f7570\",\n \"accent-warm-ink\": \"#7f6b3f\",\n \"accent-cool-ink\": \"#5b6f88\",\n \"accent-coral-ink\": \"#9d5b52\",\n \"shiki-foreground\": \"#dcdccc\",\n \"shiki-background\": \"#3f3f3f\",\n \"shiki-token-comment\": \"color-mix(in srgb, #dcdccc 55%, #3f3f3f)\",\n \"shiki-token-punctuation\": \"color-mix(in srgb, #dcdccc 72%, #3f3f3f)\",\n \"shiki-token-keyword\": \"#dc8cc3\",\n \"shiki-token-string\": \"#7f9f7f\",\n \"shiki-token-string-expression\": \"#7f9f7f\",\n \"shiki-token-constant\": \"#f0dfaf\",\n \"shiki-token-function\": \"#8cd0d3\",\n \"shiki-token-parameter\": \"#cc9393\",\n \"shiki-token-link\": \"#93e0e3\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #8cd0d3 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #f0dfaf 18%, transparent)\",\n \"color-code-line-warning-border\": \"#f0dfaf\",\n \"color-code-line-error\": \"color-mix(in srgb, #cc9393 20%, transparent)\",\n \"color-code-line-error-border\": \"#cc9393\",\n \"color-code-line-add\": \"color-mix(in srgb, #7f9f7f 16%, transparent)\",\n \"color-code-line-add-border\": \"#7f9f7f\",\n \"color-code-line-remove\": \"color-mix(in srgb, #cc9393 14%, transparent)\",\n \"color-code-line-remove-border\": \"#cc9393\",\n \"color-code-line-focus\": \"color-mix(in srgb, #8cd0d3 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #383838 92%, #dcdccc)\",\n \"color-code-title-text\": \"color-mix(in srgb, #dcdccc 88%, #383838)\",\n \"color-code-title-border\": \"color-mix(in srgb, #dcdccc 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #dcdccc 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #585858 92%, transparent)\",\n \"color-backdrop\": \"rgba(22, 22, 22, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #4a4a4a 62%, #3f3f3f)\",\n \"surface-line\": \"color-mix(in srgb, #585858 72%, #3f3f3f)\",\n \"brand-violet\": \"#dc8cc3\",\n \"brand-cyan\": \"#93e0e3\",\n \"brand-lime\": \"#7f9f7f\",\n \"brand-coral\": \"#cc9393\",\n \"brand-navy\": \"color-mix(in srgb, #dcdccc 70%, #3f3f3f)\",\n \"brand-violet-rgb\": \"220, 140, 195\",\n \"brand-cyan-rgb\": \"147, 224, 227\",\n \"brand-lime-rgb\": \"127, 159, 127\",\n \"brand-coral-rgb\": \"204, 147, 147\",\n \"accent-a\": \"#8cd0d3\",\n \"accent-b\": \"#dc8cc3\",\n \"accent-c\": \"#93e0e3\",\n \"accent-warm\": \"#f0dfaf\",\n \"accent-cool\": \"#8cd0d3\",\n \"accent-a-ink\": \"#8cd0d3\",\n \"accent-b-ink\": \"#df95c8\",\n \"accent-c-ink\": \"#93e0e3\",\n \"accent-warm-ink\": \"#f0dfaf\",\n \"accent-cool-ink\": \"#8cd0d3\",\n \"accent-coral-ink\": \"#d2a0a0\",\n \"shiki-foreground\": \"#dcdccc\",\n \"shiki-background\": \"#383838\",\n \"shiki-token-comment\": \"color-mix(in srgb, #dcdccc 55%, #383838)\",\n \"shiki-token-punctuation\": \"color-mix(in srgb, #dcdccc 72%, #383838)\",\n \"shiki-token-keyword\": \"#dc8cc3\",\n \"shiki-token-string\": \"#7f9f7f\",\n \"shiki-token-string-expression\": \"#7f9f7f\",\n \"shiki-token-constant\": \"#f0dfaf\",\n \"shiki-token-function\": \"#8cd0d3\",\n \"shiki-token-parameter\": \"#cc9393\",\n \"shiki-token-link\": \"#93e0e3\",\n },\n};\n\nexport default zenburn;\n"],"mappings":";;;;;;;;;;AAWA,MAAa,UAAuB;CAClC,MAAM;CACN,QAAQ;EACN,SAAS;EACT,cAAc;EACd,YAAY;EACZ,eAAe;EACf,MAAM;EACN,WAAW;EACX,QAAQ;EACR,gBAAgB;EAChB,mBAAmB;EACnB,UAAU;CACZ;CACA,YAAY;EACV,SAAS;EACT,cAAc;EACd,YAAY;EACZ,eAAe;EACf,MAAM;EACN,WAAW;EACX,QAAQ;EACR,gBAAgB;EAChB,mBAAmB;EACnB,UAAU;CACZ;CACA,QAAQ;EACN,6BAA6B;EAC7B,2BAA2B;EAC3B,kCAAkC;EAClC,yBAAyB;EACzB,gCAAgC;EAChC,uBAAuB;EACvB,8BAA8B;EAC9B,0BAA0B;EAC1B,iCAAiC;EACjC,yBAAyB;EACzB,uBAAuB;EACvB,uBAAuB;EACvB,yBAAyB;EACzB,2BAA2B;EAC3B,0BAA0B;EAC1B,2BAA2B;EAC3B,kBAAkB;EAClB,iBAAiB;EACjB,gBAAgB;EAChB,gBAAgB;EAChB,cAAc;EACd,cAAc;EACd,eAAe;EACf,cAAc;EACd,oBAAoB;EACpB,kBAAkB;EAClB,kBAAkB;EAClB,mBAAmB;EACnB,YAAY;EACZ,YAAY;EACZ,YAAY;EACZ,eAAe;EACf,eAAe;EACf,gBAAgB;EAChB,gBAAgB;EAChB,gBAAgB;EAChB,mBAAmB;EACnB,mBAAmB;EACnB,oBAAoB;EACpB,oBAAoB;EACpB,oBAAoB;EACpB,uBAAuB;EACvB,2BAA2B;EAC3B,uBAAuB;EACvB,sBAAsB;EACtB,iCAAiC;EACjC,wBAAwB;EACxB,wBAAwB;EACxB,yBAAyB;EACzB,oBAAoB;CACtB;CACA,YAAY;EACV,6BAA6B;EAC7B,2BAA2B;EAC3B,kCAAkC;EAClC,yBAAyB;EACzB,gCAAgC;EAChC,uBAAuB;EACvB,8BAA8B;EAC9B,0BAA0B;EAC1B,iCAAiC;EACjC,yBAAyB;EACzB,uBAAuB;EACvB,uBAAuB;EACvB,yBAAyB;EACzB,2BAA2B;EAC3B,0BAA0B;EAC1B,2BAA2B;EAC3B,kBAAkB;EAClB,iBAAiB;EACjB,gBAAgB;EAChB,gBAAgB;EAChB,cAAc;EACd,cAAc;EACd,eAAe;EACf,cAAc;EACd,oBAAoB;EACpB,kBAAkB;EAClB,kBAAkB;EAClB,mBAAmB;EACnB,YAAY;EACZ,YAAY;EACZ,YAAY;EACZ,eAAe;EACf,eAAe;EACf,gBAAgB;EAChB,gBAAgB;EAChB,gBAAgB;EAChB,mBAAmB;EACnB,mBAAmB;EACnB,oBAAoB;EACpB,oBAAoB;EACpB,oBAAoB;EACpB,uBAAuB;EACvB,2BAA2B;EAC3B,uBAAuB;EACvB,sBAAsB;EACtB,iCAAiC;EACjC,wBAAwB;EACxB,wBAAwB;EACxB,yBAAyB;EACzB,oBAAoB;CACtB;AACF"}
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@ox-content/theme-color-zenburn",
3
+ "version": "2.84.0",
4
+ "description": "The classic low-contrast scheme for long sessions — an Ox Content color scheme that composes with any @ox-content/theme-* skin",
5
+ "keywords": [
6
+ "color-scheme",
7
+ "documentation",
8
+ "markdown",
9
+ "ox-content",
10
+ "palette",
11
+ "ssg",
12
+ "theme",
13
+ "zenburn"
14
+ ],
15
+ "license": "MIT",
16
+ "author": "ubugeeei",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/ubugeeei-prod/ox-content.git",
20
+ "directory": "npm/theme-color/zenburn"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "type": "module",
26
+ "sideEffects": false,
27
+ "main": "./dist/index.cjs",
28
+ "types": "./dist/index.d.mts",
29
+ "exports": {
30
+ ".": {
31
+ "import": "./dist/index.mjs",
32
+ "require": "./dist/index.cjs",
33
+ "types": "./dist/index.d.mts"
34
+ }
35
+ },
36
+ "publishConfig": {
37
+ "access": "public",
38
+ "provenance": true
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^26.1.2",
42
+ "@typescript/native-preview": "^7.0.0-dev.20260707.2",
43
+ "typescript": "^7.0.2",
44
+ "vite-plus": "0.2.8",
45
+ "@ox-content/vite-plugin": "2.84.0"
46
+ },
47
+ "peerDependencies": {
48
+ "@ox-content/vite-plugin": ">=2.84.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "@ox-content/vite-plugin": {
52
+ "optional": true
53
+ }
54
+ },
55
+ "scripts": {
56
+ "build": "vp pack",
57
+ "dev": "vp pack --watch",
58
+ "typecheck": "tsgo --noEmit"
59
+ }
60
+ }