@ox-content/theme-color-high-contrast 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-high-contrast
2
+
3
+ High Contrast — Maximum-contrast scheme aimed at WCAG AAA body text — 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-high-contrast
10
+ ```
11
+
12
+ ```ts
13
+ // vite.config.ts
14
+ import { defineConfig } from "vite";
15
+ import { oxContent } from "@ox-content/vite-plugin";
16
+ import highContrast from "@ox-content/theme-color-high-contrast";
17
+
18
+ export default defineConfig({
19
+ plugins: [
20
+ oxContent({
21
+ srcDir: "docs",
22
+ ssg: { siteName: "My Docs", theme: highContrast },
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, highContrast, { 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
+ * High Contrast — Maximum-contrast scheme aimed at WCAG AAA body text.
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 highContrast = {
16
+ name: "high-contrast",
17
+ colors: {
18
+ primary: "#0000cc",
19
+ primaryHover: "#000099",
20
+ background: "#ffffff",
21
+ backgroundAlt: "#f0f0f0",
22
+ text: "#000000",
23
+ textMuted: "#3d3d3d",
24
+ border: "#000000",
25
+ codeBackground: "#000000",
26
+ codeBackgroundTop: "#000000",
27
+ codeText: "#ffffff"
28
+ },
29
+ darkColors: {
30
+ primary: "#66d9ff",
31
+ primaryHover: "#a6e9ff",
32
+ background: "#000000",
33
+ backgroundAlt: "#0f0f0f",
34
+ text: "#ffffff",
35
+ textMuted: "#c4c4c4",
36
+ border: "#ffffff",
37
+ codeBackground: "#000000",
38
+ codeBackgroundTop: "#000000",
39
+ codeText: "#ffffff"
40
+ },
41
+ tokens: {
42
+ "color-code-line-highlight": "color-mix(in srgb, #0000cc 16%, transparent)",
43
+ "color-code-line-warning": "color-mix(in srgb, #664d00 18%, transparent)",
44
+ "color-code-line-warning-border": "#664d00",
45
+ "color-code-line-error": "color-mix(in srgb, #b30000 20%, transparent)",
46
+ "color-code-line-error-border": "#b30000",
47
+ "color-code-line-add": "color-mix(in srgb, #005c1f 16%, transparent)",
48
+ "color-code-line-add-border": "#005c1f",
49
+ "color-code-line-remove": "color-mix(in srgb, #b30000 14%, transparent)",
50
+ "color-code-line-remove-border": "#b30000",
51
+ "color-code-line-focus": "color-mix(in srgb, #0000cc 16%, transparent)",
52
+ "color-code-line-dim": "0.45",
53
+ "color-code-title-bg": "color-mix(in srgb, #000000 92%, #ffffff)",
54
+ "color-code-title-text": "color-mix(in srgb, #ffffff 88%, #000000)",
55
+ "color-code-title-border": "color-mix(in srgb, #ffffff 22%, transparent)",
56
+ "color-code-line-number": "color-mix(in srgb, #ffffff 48%, transparent)",
57
+ "color-code-frame-border": "color-mix(in srgb, #000000 92%, transparent)",
58
+ "color-backdrop": "rgba(89, 89, 89, 0.62)",
59
+ "surface-glass": "color-mix(in srgb, #f0f0f0 62%, #ffffff)",
60
+ "surface-line": "color-mix(in srgb, #000000 72%, #ffffff)",
61
+ "brand-violet": "#7a007a",
62
+ "brand-cyan": "#00565c",
63
+ "brand-lime": "#005c1f",
64
+ "brand-coral": "#b30000",
65
+ "brand-navy": "color-mix(in srgb, #000000 70%, #ffffff)",
66
+ "brand-violet-rgb": "122, 0, 122",
67
+ "brand-cyan-rgb": "0, 86, 92",
68
+ "brand-lime-rgb": "0, 92, 31",
69
+ "brand-coral-rgb": "179, 0, 0",
70
+ "accent-a": "#0000cc",
71
+ "accent-b": "#7a007a",
72
+ "accent-c": "#00565c",
73
+ "accent-warm": "#664d00",
74
+ "accent-cool": "#0000cc",
75
+ "accent-a-ink": "#0000cc",
76
+ "accent-b-ink": "#7a007a",
77
+ "accent-c-ink": "#00565c",
78
+ "accent-warm-ink": "#664d00",
79
+ "accent-cool-ink": "#0000cc",
80
+ "accent-coral-ink": "#b30000",
81
+ "shiki-foreground": "#ffffff",
82
+ "shiki-background": "#000000",
83
+ "shiki-token-comment": "color-mix(in srgb, #ffffff 55%, #000000)",
84
+ "shiki-token-punctuation": "color-mix(in srgb, #ffffff 72%, #000000)",
85
+ "shiki-token-keyword": "#ff9fff",
86
+ "shiki-token-string": "#5eff8f",
87
+ "shiki-token-string-expression": "#5eff8f",
88
+ "shiki-token-constant": "#ffe680",
89
+ "shiki-token-function": "#66d9ff",
90
+ "shiki-token-parameter": "#ff8080",
91
+ "shiki-token-link": "#80ffff"
92
+ },
93
+ darkTokens: {
94
+ "color-code-line-highlight": "color-mix(in srgb, #66d9ff 16%, transparent)",
95
+ "color-code-line-warning": "color-mix(in srgb, #ffe680 18%, transparent)",
96
+ "color-code-line-warning-border": "#ffe680",
97
+ "color-code-line-error": "color-mix(in srgb, #ff8080 20%, transparent)",
98
+ "color-code-line-error-border": "#ff8080",
99
+ "color-code-line-add": "color-mix(in srgb, #5eff8f 16%, transparent)",
100
+ "color-code-line-add-border": "#5eff8f",
101
+ "color-code-line-remove": "color-mix(in srgb, #ff8080 14%, transparent)",
102
+ "color-code-line-remove-border": "#ff8080",
103
+ "color-code-line-focus": "color-mix(in srgb, #66d9ff 16%, transparent)",
104
+ "color-code-line-dim": "0.35",
105
+ "color-code-title-bg": "color-mix(in srgb, #000000 92%, #ffffff)",
106
+ "color-code-title-text": "color-mix(in srgb, #ffffff 88%, #000000)",
107
+ "color-code-title-border": "color-mix(in srgb, #ffffff 22%, transparent)",
108
+ "color-code-line-number": "color-mix(in srgb, #ffffff 48%, transparent)",
109
+ "color-code-frame-border": "color-mix(in srgb, #ffffff 92%, transparent)",
110
+ "color-backdrop": "rgba(0, 0, 0, 0.62)",
111
+ "surface-glass": "color-mix(in srgb, #0f0f0f 62%, #000000)",
112
+ "surface-line": "color-mix(in srgb, #ffffff 72%, #000000)",
113
+ "brand-violet": "#ff9fff",
114
+ "brand-cyan": "#80ffff",
115
+ "brand-lime": "#5eff8f",
116
+ "brand-coral": "#ff8080",
117
+ "brand-navy": "color-mix(in srgb, #ffffff 70%, #000000)",
118
+ "brand-violet-rgb": "255, 159, 255",
119
+ "brand-cyan-rgb": "128, 255, 255",
120
+ "brand-lime-rgb": "94, 255, 143",
121
+ "brand-coral-rgb": "255, 128, 128",
122
+ "accent-a": "#66d9ff",
123
+ "accent-b": "#ff9fff",
124
+ "accent-c": "#80ffff",
125
+ "accent-warm": "#ffe680",
126
+ "accent-cool": "#66d9ff",
127
+ "accent-a-ink": "#66d9ff",
128
+ "accent-b-ink": "#ff9fff",
129
+ "accent-c-ink": "#80ffff",
130
+ "accent-warm-ink": "#ffe680",
131
+ "accent-cool-ink": "#66d9ff",
132
+ "accent-coral-ink": "#ff8080",
133
+ "shiki-foreground": "#ffffff",
134
+ "shiki-background": "#000000",
135
+ "shiki-token-comment": "color-mix(in srgb, #ffffff 55%, #000000)",
136
+ "shiki-token-punctuation": "color-mix(in srgb, #ffffff 72%, #000000)",
137
+ "shiki-token-keyword": "#ff9fff",
138
+ "shiki-token-string": "#5eff8f",
139
+ "shiki-token-string-expression": "#5eff8f",
140
+ "shiki-token-constant": "#ffe680",
141
+ "shiki-token-function": "#66d9ff",
142
+ "shiki-token-parameter": "#ff8080",
143
+ "shiki-token-link": "#80ffff"
144
+ }
145
+ };
146
+ //#endregion
147
+ exports.default = highContrast;
148
+ exports.highContrast = highContrast;
@@ -0,0 +1,15 @@
1
+ import { ThemeConfig } from "@ox-content/vite-plugin";
2
+ //#region src/index.d.ts
3
+ /**
4
+ * High Contrast — Maximum-contrast scheme aimed at WCAG AAA body text.
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 highContrast: ThemeConfig;
13
+ //#endregion
14
+ export { highContrast as default, highContrast };
15
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,cAAc"}
@@ -0,0 +1,15 @@
1
+ import { ThemeConfig } from "@ox-content/vite-plugin";
2
+ //#region src/index.d.ts
3
+ /**
4
+ * High Contrast — Maximum-contrast scheme aimed at WCAG AAA body text.
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 highContrast: ThemeConfig;
13
+ //#endregion
14
+ export { highContrast as default, highContrast };
15
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,cAAc"}
package/dist/index.mjs ADDED
@@ -0,0 +1,145 @@
1
+ //#region src/index.ts
2
+ /**
3
+ * High Contrast — Maximum-contrast scheme aimed at WCAG AAA body text.
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 highContrast = {
12
+ name: "high-contrast",
13
+ colors: {
14
+ primary: "#0000cc",
15
+ primaryHover: "#000099",
16
+ background: "#ffffff",
17
+ backgroundAlt: "#f0f0f0",
18
+ text: "#000000",
19
+ textMuted: "#3d3d3d",
20
+ border: "#000000",
21
+ codeBackground: "#000000",
22
+ codeBackgroundTop: "#000000",
23
+ codeText: "#ffffff"
24
+ },
25
+ darkColors: {
26
+ primary: "#66d9ff",
27
+ primaryHover: "#a6e9ff",
28
+ background: "#000000",
29
+ backgroundAlt: "#0f0f0f",
30
+ text: "#ffffff",
31
+ textMuted: "#c4c4c4",
32
+ border: "#ffffff",
33
+ codeBackground: "#000000",
34
+ codeBackgroundTop: "#000000",
35
+ codeText: "#ffffff"
36
+ },
37
+ tokens: {
38
+ "color-code-line-highlight": "color-mix(in srgb, #0000cc 16%, transparent)",
39
+ "color-code-line-warning": "color-mix(in srgb, #664d00 18%, transparent)",
40
+ "color-code-line-warning-border": "#664d00",
41
+ "color-code-line-error": "color-mix(in srgb, #b30000 20%, transparent)",
42
+ "color-code-line-error-border": "#b30000",
43
+ "color-code-line-add": "color-mix(in srgb, #005c1f 16%, transparent)",
44
+ "color-code-line-add-border": "#005c1f",
45
+ "color-code-line-remove": "color-mix(in srgb, #b30000 14%, transparent)",
46
+ "color-code-line-remove-border": "#b30000",
47
+ "color-code-line-focus": "color-mix(in srgb, #0000cc 16%, transparent)",
48
+ "color-code-line-dim": "0.45",
49
+ "color-code-title-bg": "color-mix(in srgb, #000000 92%, #ffffff)",
50
+ "color-code-title-text": "color-mix(in srgb, #ffffff 88%, #000000)",
51
+ "color-code-title-border": "color-mix(in srgb, #ffffff 22%, transparent)",
52
+ "color-code-line-number": "color-mix(in srgb, #ffffff 48%, transparent)",
53
+ "color-code-frame-border": "color-mix(in srgb, #000000 92%, transparent)",
54
+ "color-backdrop": "rgba(89, 89, 89, 0.62)",
55
+ "surface-glass": "color-mix(in srgb, #f0f0f0 62%, #ffffff)",
56
+ "surface-line": "color-mix(in srgb, #000000 72%, #ffffff)",
57
+ "brand-violet": "#7a007a",
58
+ "brand-cyan": "#00565c",
59
+ "brand-lime": "#005c1f",
60
+ "brand-coral": "#b30000",
61
+ "brand-navy": "color-mix(in srgb, #000000 70%, #ffffff)",
62
+ "brand-violet-rgb": "122, 0, 122",
63
+ "brand-cyan-rgb": "0, 86, 92",
64
+ "brand-lime-rgb": "0, 92, 31",
65
+ "brand-coral-rgb": "179, 0, 0",
66
+ "accent-a": "#0000cc",
67
+ "accent-b": "#7a007a",
68
+ "accent-c": "#00565c",
69
+ "accent-warm": "#664d00",
70
+ "accent-cool": "#0000cc",
71
+ "accent-a-ink": "#0000cc",
72
+ "accent-b-ink": "#7a007a",
73
+ "accent-c-ink": "#00565c",
74
+ "accent-warm-ink": "#664d00",
75
+ "accent-cool-ink": "#0000cc",
76
+ "accent-coral-ink": "#b30000",
77
+ "shiki-foreground": "#ffffff",
78
+ "shiki-background": "#000000",
79
+ "shiki-token-comment": "color-mix(in srgb, #ffffff 55%, #000000)",
80
+ "shiki-token-punctuation": "color-mix(in srgb, #ffffff 72%, #000000)",
81
+ "shiki-token-keyword": "#ff9fff",
82
+ "shiki-token-string": "#5eff8f",
83
+ "shiki-token-string-expression": "#5eff8f",
84
+ "shiki-token-constant": "#ffe680",
85
+ "shiki-token-function": "#66d9ff",
86
+ "shiki-token-parameter": "#ff8080",
87
+ "shiki-token-link": "#80ffff"
88
+ },
89
+ darkTokens: {
90
+ "color-code-line-highlight": "color-mix(in srgb, #66d9ff 16%, transparent)",
91
+ "color-code-line-warning": "color-mix(in srgb, #ffe680 18%, transparent)",
92
+ "color-code-line-warning-border": "#ffe680",
93
+ "color-code-line-error": "color-mix(in srgb, #ff8080 20%, transparent)",
94
+ "color-code-line-error-border": "#ff8080",
95
+ "color-code-line-add": "color-mix(in srgb, #5eff8f 16%, transparent)",
96
+ "color-code-line-add-border": "#5eff8f",
97
+ "color-code-line-remove": "color-mix(in srgb, #ff8080 14%, transparent)",
98
+ "color-code-line-remove-border": "#ff8080",
99
+ "color-code-line-focus": "color-mix(in srgb, #66d9ff 16%, transparent)",
100
+ "color-code-line-dim": "0.35",
101
+ "color-code-title-bg": "color-mix(in srgb, #000000 92%, #ffffff)",
102
+ "color-code-title-text": "color-mix(in srgb, #ffffff 88%, #000000)",
103
+ "color-code-title-border": "color-mix(in srgb, #ffffff 22%, transparent)",
104
+ "color-code-line-number": "color-mix(in srgb, #ffffff 48%, transparent)",
105
+ "color-code-frame-border": "color-mix(in srgb, #ffffff 92%, transparent)",
106
+ "color-backdrop": "rgba(0, 0, 0, 0.62)",
107
+ "surface-glass": "color-mix(in srgb, #0f0f0f 62%, #000000)",
108
+ "surface-line": "color-mix(in srgb, #ffffff 72%, #000000)",
109
+ "brand-violet": "#ff9fff",
110
+ "brand-cyan": "#80ffff",
111
+ "brand-lime": "#5eff8f",
112
+ "brand-coral": "#ff8080",
113
+ "brand-navy": "color-mix(in srgb, #ffffff 70%, #000000)",
114
+ "brand-violet-rgb": "255, 159, 255",
115
+ "brand-cyan-rgb": "128, 255, 255",
116
+ "brand-lime-rgb": "94, 255, 143",
117
+ "brand-coral-rgb": "255, 128, 128",
118
+ "accent-a": "#66d9ff",
119
+ "accent-b": "#ff9fff",
120
+ "accent-c": "#80ffff",
121
+ "accent-warm": "#ffe680",
122
+ "accent-cool": "#66d9ff",
123
+ "accent-a-ink": "#66d9ff",
124
+ "accent-b-ink": "#ff9fff",
125
+ "accent-c-ink": "#80ffff",
126
+ "accent-warm-ink": "#ffe680",
127
+ "accent-cool-ink": "#66d9ff",
128
+ "accent-coral-ink": "#ff8080",
129
+ "shiki-foreground": "#ffffff",
130
+ "shiki-background": "#000000",
131
+ "shiki-token-comment": "color-mix(in srgb, #ffffff 55%, #000000)",
132
+ "shiki-token-punctuation": "color-mix(in srgb, #ffffff 72%, #000000)",
133
+ "shiki-token-keyword": "#ff9fff",
134
+ "shiki-token-string": "#5eff8f",
135
+ "shiki-token-string-expression": "#5eff8f",
136
+ "shiki-token-constant": "#ffe680",
137
+ "shiki-token-function": "#66d9ff",
138
+ "shiki-token-parameter": "#ff8080",
139
+ "shiki-token-link": "#80ffff"
140
+ }
141
+ };
142
+ //#endregion
143
+ export { highContrast as default, highContrast };
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 * High Contrast — Maximum-contrast scheme aimed at WCAG AAA body text.\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 highContrast: ThemeConfig = {\n name: \"high-contrast\",\n colors: {\n primary: \"#0000cc\",\n primaryHover: \"#000099\",\n background: \"#ffffff\",\n backgroundAlt: \"#f0f0f0\",\n text: \"#000000\",\n textMuted: \"#3d3d3d\",\n border: \"#000000\",\n codeBackground: \"#000000\",\n codeBackgroundTop: \"#000000\",\n codeText: \"#ffffff\",\n },\n darkColors: {\n primary: \"#66d9ff\",\n primaryHover: \"#a6e9ff\",\n background: \"#000000\",\n backgroundAlt: \"#0f0f0f\",\n text: \"#ffffff\",\n textMuted: \"#c4c4c4\",\n border: \"#ffffff\",\n codeBackground: \"#000000\",\n codeBackgroundTop: \"#000000\",\n codeText: \"#ffffff\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #0000cc 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #664d00 18%, transparent)\",\n \"color-code-line-warning-border\": \"#664d00\",\n \"color-code-line-error\": \"color-mix(in srgb, #b30000 20%, transparent)\",\n \"color-code-line-error-border\": \"#b30000\",\n \"color-code-line-add\": \"color-mix(in srgb, #005c1f 16%, transparent)\",\n \"color-code-line-add-border\": \"#005c1f\",\n \"color-code-line-remove\": \"color-mix(in srgb, #b30000 14%, transparent)\",\n \"color-code-line-remove-border\": \"#b30000\",\n \"color-code-line-focus\": \"color-mix(in srgb, #0000cc 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #000000 92%, #ffffff)\",\n \"color-code-title-text\": \"color-mix(in srgb, #ffffff 88%, #000000)\",\n \"color-code-title-border\": \"color-mix(in srgb, #ffffff 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #ffffff 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #000000 92%, transparent)\",\n \"color-backdrop\": \"rgba(89, 89, 89, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f0f0f0 62%, #ffffff)\",\n \"surface-line\": \"color-mix(in srgb, #000000 72%, #ffffff)\",\n \"brand-violet\": \"#7a007a\",\n \"brand-cyan\": \"#00565c\",\n \"brand-lime\": \"#005c1f\",\n \"brand-coral\": \"#b30000\",\n \"brand-navy\": \"color-mix(in srgb, #000000 70%, #ffffff)\",\n \"brand-violet-rgb\": \"122, 0, 122\",\n \"brand-cyan-rgb\": \"0, 86, 92\",\n \"brand-lime-rgb\": \"0, 92, 31\",\n \"brand-coral-rgb\": \"179, 0, 0\",\n \"accent-a\": \"#0000cc\",\n \"accent-b\": \"#7a007a\",\n \"accent-c\": \"#00565c\",\n \"accent-warm\": \"#664d00\",\n \"accent-cool\": \"#0000cc\",\n \"accent-a-ink\": \"#0000cc\",\n \"accent-b-ink\": \"#7a007a\",\n \"accent-c-ink\": \"#00565c\",\n \"accent-warm-ink\": \"#664d00\",\n \"accent-cool-ink\": \"#0000cc\",\n \"accent-coral-ink\": \"#b30000\",\n \"shiki-foreground\": \"#ffffff\",\n \"shiki-background\": \"#000000\",\n \"shiki-token-comment\": \"color-mix(in srgb, #ffffff 55%, #000000)\",\n \"shiki-token-punctuation\": \"color-mix(in srgb, #ffffff 72%, #000000)\",\n \"shiki-token-keyword\": \"#ff9fff\",\n \"shiki-token-string\": \"#5eff8f\",\n \"shiki-token-string-expression\": \"#5eff8f\",\n \"shiki-token-constant\": \"#ffe680\",\n \"shiki-token-function\": \"#66d9ff\",\n \"shiki-token-parameter\": \"#ff8080\",\n \"shiki-token-link\": \"#80ffff\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #66d9ff 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #ffe680 18%, transparent)\",\n \"color-code-line-warning-border\": \"#ffe680\",\n \"color-code-line-error\": \"color-mix(in srgb, #ff8080 20%, transparent)\",\n \"color-code-line-error-border\": \"#ff8080\",\n \"color-code-line-add\": \"color-mix(in srgb, #5eff8f 16%, transparent)\",\n \"color-code-line-add-border\": \"#5eff8f\",\n \"color-code-line-remove\": \"color-mix(in srgb, #ff8080 14%, transparent)\",\n \"color-code-line-remove-border\": \"#ff8080\",\n \"color-code-line-focus\": \"color-mix(in srgb, #66d9ff 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #000000 92%, #ffffff)\",\n \"color-code-title-text\": \"color-mix(in srgb, #ffffff 88%, #000000)\",\n \"color-code-title-border\": \"color-mix(in srgb, #ffffff 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #ffffff 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #ffffff 92%, transparent)\",\n \"color-backdrop\": \"rgba(0, 0, 0, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #0f0f0f 62%, #000000)\",\n \"surface-line\": \"color-mix(in srgb, #ffffff 72%, #000000)\",\n \"brand-violet\": \"#ff9fff\",\n \"brand-cyan\": \"#80ffff\",\n \"brand-lime\": \"#5eff8f\",\n \"brand-coral\": \"#ff8080\",\n \"brand-navy\": \"color-mix(in srgb, #ffffff 70%, #000000)\",\n \"brand-violet-rgb\": \"255, 159, 255\",\n \"brand-cyan-rgb\": \"128, 255, 255\",\n \"brand-lime-rgb\": \"94, 255, 143\",\n \"brand-coral-rgb\": \"255, 128, 128\",\n \"accent-a\": \"#66d9ff\",\n \"accent-b\": \"#ff9fff\",\n \"accent-c\": \"#80ffff\",\n \"accent-warm\": \"#ffe680\",\n \"accent-cool\": \"#66d9ff\",\n \"accent-a-ink\": \"#66d9ff\",\n \"accent-b-ink\": \"#ff9fff\",\n \"accent-c-ink\": \"#80ffff\",\n \"accent-warm-ink\": \"#ffe680\",\n \"accent-cool-ink\": \"#66d9ff\",\n \"accent-coral-ink\": \"#ff8080\",\n \"shiki-foreground\": \"#ffffff\",\n \"shiki-background\": \"#000000\",\n \"shiki-token-comment\": \"color-mix(in srgb, #ffffff 55%, #000000)\",\n \"shiki-token-punctuation\": \"color-mix(in srgb, #ffffff 72%, #000000)\",\n \"shiki-token-keyword\": \"#ff9fff\",\n \"shiki-token-string\": \"#5eff8f\",\n \"shiki-token-string-expression\": \"#5eff8f\",\n \"shiki-token-constant\": \"#ffe680\",\n \"shiki-token-function\": \"#66d9ff\",\n \"shiki-token-parameter\": \"#ff8080\",\n \"shiki-token-link\": \"#80ffff\",\n },\n};\n\nexport default highContrast;\n"],"mappings":";;;;;;;;;;AAWA,MAAa,eAA4B;CACvC,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-high-contrast",
3
+ "version": "2.84.0",
4
+ "description": "Maximum-contrast scheme aimed at WCAG AAA body text — an Ox Content color scheme that composes with any @ox-content/theme-* skin",
5
+ "keywords": [
6
+ "color-scheme",
7
+ "documentation",
8
+ "high-contrast",
9
+ "markdown",
10
+ "ox-content",
11
+ "palette",
12
+ "ssg",
13
+ "theme"
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/high-contrast"
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
+ }