@ox-content/theme-color-oceanic 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 +21 -0
- package/README.md +39 -0
- package/dist/index.cjs +148 -0
- package/dist/index.d.cts +15 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +15 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +145 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +60 -0
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-oceanic
|
|
2
|
+
|
|
3
|
+
Oceanic — Oceanic Next — deep slate teal — 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-oceanic
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
```ts
|
|
13
|
+
// vite.config.ts
|
|
14
|
+
import { defineConfig } from "vite";
|
|
15
|
+
import { oxContent } from "@ox-content/vite-plugin";
|
|
16
|
+
import oceanic from "@ox-content/theme-color-oceanic";
|
|
17
|
+
|
|
18
|
+
export default defineConfig({
|
|
19
|
+
plugins: [
|
|
20
|
+
oxContent({
|
|
21
|
+
srcDir: "docs",
|
|
22
|
+
ssg: { siteName: "My Docs", theme: oceanic },
|
|
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, oceanic, { 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
|
+
* Oceanic — Oceanic Next — deep slate teal.
|
|
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 oceanic = {
|
|
16
|
+
name: "oceanic",
|
|
17
|
+
colors: {
|
|
18
|
+
primary: "#0b7285",
|
|
19
|
+
primaryHover: "#095c6b",
|
|
20
|
+
background: "#fafbfc",
|
|
21
|
+
backgroundAlt: "#eef1f4",
|
|
22
|
+
text: "#1b2b34",
|
|
23
|
+
textMuted: "#5b6b76",
|
|
24
|
+
border: "#dbe1e6",
|
|
25
|
+
codeBackground: "#1b2b34",
|
|
26
|
+
codeBackgroundTop: "#1b2b34",
|
|
27
|
+
codeText: "#cdd3de"
|
|
28
|
+
},
|
|
29
|
+
darkColors: {
|
|
30
|
+
primary: "#6699cc",
|
|
31
|
+
primaryHover: "#8fb6dc",
|
|
32
|
+
background: "#1b2b34",
|
|
33
|
+
backgroundAlt: "#22333c",
|
|
34
|
+
text: "#cdd3de",
|
|
35
|
+
textMuted: "#87949e",
|
|
36
|
+
border: "#31424c",
|
|
37
|
+
codeBackground: "#16242c",
|
|
38
|
+
codeBackgroundTop: "#16242c",
|
|
39
|
+
codeText: "#cdd3de"
|
|
40
|
+
},
|
|
41
|
+
tokens: {
|
|
42
|
+
"color-code-line-highlight": "color-mix(in srgb, #3a6ea8 16%, transparent)",
|
|
43
|
+
"color-code-line-warning": "color-mix(in srgb, #9a6b1f 18%, transparent)",
|
|
44
|
+
"color-code-line-warning-border": "#9a6b1f",
|
|
45
|
+
"color-code-line-error": "color-mix(in srgb, #c1453b 20%, transparent)",
|
|
46
|
+
"color-code-line-error-border": "#c1453b",
|
|
47
|
+
"color-code-line-add": "color-mix(in srgb, #3f7d3f 16%, transparent)",
|
|
48
|
+
"color-code-line-add-border": "#3f7d3f",
|
|
49
|
+
"color-code-line-remove": "color-mix(in srgb, #c1453b 14%, transparent)",
|
|
50
|
+
"color-code-line-remove-border": "#c1453b",
|
|
51
|
+
"color-code-line-focus": "color-mix(in srgb, #0b7285 16%, transparent)",
|
|
52
|
+
"color-code-line-dim": "0.45",
|
|
53
|
+
"color-code-title-bg": "color-mix(in srgb, #1b2b34 92%, #cdd3de)",
|
|
54
|
+
"color-code-title-text": "color-mix(in srgb, #cdd3de 88%, #1b2b34)",
|
|
55
|
+
"color-code-title-border": "color-mix(in srgb, #cdd3de 22%, transparent)",
|
|
56
|
+
"color-code-line-number": "color-mix(in srgb, #cdd3de 48%, transparent)",
|
|
57
|
+
"color-code-frame-border": "color-mix(in srgb, #dbe1e6 92%, transparent)",
|
|
58
|
+
"color-backdrop": "rgba(88, 88, 88, 0.62)",
|
|
59
|
+
"surface-glass": "color-mix(in srgb, #eef1f4 62%, #fafbfc)",
|
|
60
|
+
"surface-line": "color-mix(in srgb, #dbe1e6 72%, #fafbfc)",
|
|
61
|
+
"brand-violet": "#8a5a9e",
|
|
62
|
+
"brand-cyan": "#0b7285",
|
|
63
|
+
"brand-lime": "#3f7d3f",
|
|
64
|
+
"brand-coral": "#c1453b",
|
|
65
|
+
"brand-navy": "color-mix(in srgb, #1b2b34 70%, #fafbfc)",
|
|
66
|
+
"brand-violet-rgb": "138, 90, 158",
|
|
67
|
+
"brand-cyan-rgb": "11, 114, 133",
|
|
68
|
+
"brand-lime-rgb": "63, 125, 63",
|
|
69
|
+
"brand-coral-rgb": "193, 69, 59",
|
|
70
|
+
"accent-a": "#0b7285",
|
|
71
|
+
"accent-b": "#8a5a9e",
|
|
72
|
+
"accent-c": "#0b7285",
|
|
73
|
+
"accent-warm": "#9a6b1f",
|
|
74
|
+
"accent-cool": "#3a6ea8",
|
|
75
|
+
"accent-a-ink": "#0b7285",
|
|
76
|
+
"accent-b-ink": "#8a5a9e",
|
|
77
|
+
"accent-c-ink": "#0b7285",
|
|
78
|
+
"accent-warm-ink": "#9a6b1f",
|
|
79
|
+
"accent-cool-ink": "#3a6ea8",
|
|
80
|
+
"accent-coral-ink": "#c1453b",
|
|
81
|
+
"shiki-foreground": "#cdd3de",
|
|
82
|
+
"shiki-background": "#1b2b34",
|
|
83
|
+
"shiki-token-comment": "color-mix(in srgb, #cdd3de 55%, #1b2b34)",
|
|
84
|
+
"shiki-token-punctuation": "color-mix(in srgb, #cdd3de 72%, #1b2b34)",
|
|
85
|
+
"shiki-token-keyword": "#c594c5",
|
|
86
|
+
"shiki-token-string": "#99c794",
|
|
87
|
+
"shiki-token-string-expression": "#99c794",
|
|
88
|
+
"shiki-token-constant": "#fac863",
|
|
89
|
+
"shiki-token-function": "#6699cc",
|
|
90
|
+
"shiki-token-parameter": "#ec5f67",
|
|
91
|
+
"shiki-token-link": "#5fb3b3"
|
|
92
|
+
},
|
|
93
|
+
darkTokens: {
|
|
94
|
+
"color-code-line-highlight": "color-mix(in srgb, #6699cc 16%, transparent)",
|
|
95
|
+
"color-code-line-warning": "color-mix(in srgb, #fac863 18%, transparent)",
|
|
96
|
+
"color-code-line-warning-border": "#fac863",
|
|
97
|
+
"color-code-line-error": "color-mix(in srgb, #ec5f67 20%, transparent)",
|
|
98
|
+
"color-code-line-error-border": "#ec5f67",
|
|
99
|
+
"color-code-line-add": "color-mix(in srgb, #99c794 16%, transparent)",
|
|
100
|
+
"color-code-line-add-border": "#99c794",
|
|
101
|
+
"color-code-line-remove": "color-mix(in srgb, #ec5f67 14%, transparent)",
|
|
102
|
+
"color-code-line-remove-border": "#ec5f67",
|
|
103
|
+
"color-code-line-focus": "color-mix(in srgb, #6699cc 16%, transparent)",
|
|
104
|
+
"color-code-line-dim": "0.35",
|
|
105
|
+
"color-code-title-bg": "color-mix(in srgb, #16242c 92%, #cdd3de)",
|
|
106
|
+
"color-code-title-text": "color-mix(in srgb, #cdd3de 88%, #16242c)",
|
|
107
|
+
"color-code-title-border": "color-mix(in srgb, #cdd3de 22%, transparent)",
|
|
108
|
+
"color-code-line-number": "color-mix(in srgb, #cdd3de 48%, transparent)",
|
|
109
|
+
"color-code-frame-border": "color-mix(in srgb, #31424c 92%, transparent)",
|
|
110
|
+
"color-backdrop": "rgba(9, 15, 18, 0.62)",
|
|
111
|
+
"surface-glass": "color-mix(in srgb, #22333c 62%, #1b2b34)",
|
|
112
|
+
"surface-line": "color-mix(in srgb, #31424c 72%, #1b2b34)",
|
|
113
|
+
"brand-violet": "#c594c5",
|
|
114
|
+
"brand-cyan": "#5fb3b3",
|
|
115
|
+
"brand-lime": "#99c794",
|
|
116
|
+
"brand-coral": "#ec5f67",
|
|
117
|
+
"brand-navy": "color-mix(in srgb, #cdd3de 70%, #1b2b34)",
|
|
118
|
+
"brand-violet-rgb": "197, 148, 197",
|
|
119
|
+
"brand-cyan-rgb": "95, 179, 179",
|
|
120
|
+
"brand-lime-rgb": "153, 199, 148",
|
|
121
|
+
"brand-coral-rgb": "236, 95, 103",
|
|
122
|
+
"accent-a": "#6699cc",
|
|
123
|
+
"accent-b": "#c594c5",
|
|
124
|
+
"accent-c": "#5fb3b3",
|
|
125
|
+
"accent-warm": "#fac863",
|
|
126
|
+
"accent-cool": "#6699cc",
|
|
127
|
+
"accent-a-ink": "#6699cc",
|
|
128
|
+
"accent-b-ink": "#c594c5",
|
|
129
|
+
"accent-c-ink": "#5fb3b3",
|
|
130
|
+
"accent-warm-ink": "#fac863",
|
|
131
|
+
"accent-cool-ink": "#6699cc",
|
|
132
|
+
"accent-coral-ink": "#ed656d",
|
|
133
|
+
"shiki-foreground": "#cdd3de",
|
|
134
|
+
"shiki-background": "#16242c",
|
|
135
|
+
"shiki-token-comment": "color-mix(in srgb, #cdd3de 55%, #16242c)",
|
|
136
|
+
"shiki-token-punctuation": "color-mix(in srgb, #cdd3de 72%, #16242c)",
|
|
137
|
+
"shiki-token-keyword": "#c594c5",
|
|
138
|
+
"shiki-token-string": "#99c794",
|
|
139
|
+
"shiki-token-string-expression": "#99c794",
|
|
140
|
+
"shiki-token-constant": "#fac863",
|
|
141
|
+
"shiki-token-function": "#6699cc",
|
|
142
|
+
"shiki-token-parameter": "#ec5f67",
|
|
143
|
+
"shiki-token-link": "#5fb3b3"
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
//#endregion
|
|
147
|
+
exports.default = oceanic;
|
|
148
|
+
exports.oceanic = oceanic;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ThemeConfig } from "@ox-content/vite-plugin";
|
|
2
|
+
//#region src/index.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* Oceanic — Oceanic Next — deep slate teal.
|
|
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 oceanic: ThemeConfig;
|
|
13
|
+
//#endregion
|
|
14
|
+
export { oceanic as default, oceanic };
|
|
15
|
+
//# sourceMappingURL=index.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,SAAS"}
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ThemeConfig } from "@ox-content/vite-plugin";
|
|
2
|
+
//#region src/index.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* Oceanic — Oceanic Next — deep slate teal.
|
|
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 oceanic: ThemeConfig;
|
|
13
|
+
//#endregion
|
|
14
|
+
export { oceanic as default, oceanic };
|
|
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
|
+
* Oceanic — Oceanic Next — deep slate teal.
|
|
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 oceanic = {
|
|
12
|
+
name: "oceanic",
|
|
13
|
+
colors: {
|
|
14
|
+
primary: "#0b7285",
|
|
15
|
+
primaryHover: "#095c6b",
|
|
16
|
+
background: "#fafbfc",
|
|
17
|
+
backgroundAlt: "#eef1f4",
|
|
18
|
+
text: "#1b2b34",
|
|
19
|
+
textMuted: "#5b6b76",
|
|
20
|
+
border: "#dbe1e6",
|
|
21
|
+
codeBackground: "#1b2b34",
|
|
22
|
+
codeBackgroundTop: "#1b2b34",
|
|
23
|
+
codeText: "#cdd3de"
|
|
24
|
+
},
|
|
25
|
+
darkColors: {
|
|
26
|
+
primary: "#6699cc",
|
|
27
|
+
primaryHover: "#8fb6dc",
|
|
28
|
+
background: "#1b2b34",
|
|
29
|
+
backgroundAlt: "#22333c",
|
|
30
|
+
text: "#cdd3de",
|
|
31
|
+
textMuted: "#87949e",
|
|
32
|
+
border: "#31424c",
|
|
33
|
+
codeBackground: "#16242c",
|
|
34
|
+
codeBackgroundTop: "#16242c",
|
|
35
|
+
codeText: "#cdd3de"
|
|
36
|
+
},
|
|
37
|
+
tokens: {
|
|
38
|
+
"color-code-line-highlight": "color-mix(in srgb, #3a6ea8 16%, transparent)",
|
|
39
|
+
"color-code-line-warning": "color-mix(in srgb, #9a6b1f 18%, transparent)",
|
|
40
|
+
"color-code-line-warning-border": "#9a6b1f",
|
|
41
|
+
"color-code-line-error": "color-mix(in srgb, #c1453b 20%, transparent)",
|
|
42
|
+
"color-code-line-error-border": "#c1453b",
|
|
43
|
+
"color-code-line-add": "color-mix(in srgb, #3f7d3f 16%, transparent)",
|
|
44
|
+
"color-code-line-add-border": "#3f7d3f",
|
|
45
|
+
"color-code-line-remove": "color-mix(in srgb, #c1453b 14%, transparent)",
|
|
46
|
+
"color-code-line-remove-border": "#c1453b",
|
|
47
|
+
"color-code-line-focus": "color-mix(in srgb, #0b7285 16%, transparent)",
|
|
48
|
+
"color-code-line-dim": "0.45",
|
|
49
|
+
"color-code-title-bg": "color-mix(in srgb, #1b2b34 92%, #cdd3de)",
|
|
50
|
+
"color-code-title-text": "color-mix(in srgb, #cdd3de 88%, #1b2b34)",
|
|
51
|
+
"color-code-title-border": "color-mix(in srgb, #cdd3de 22%, transparent)",
|
|
52
|
+
"color-code-line-number": "color-mix(in srgb, #cdd3de 48%, transparent)",
|
|
53
|
+
"color-code-frame-border": "color-mix(in srgb, #dbe1e6 92%, transparent)",
|
|
54
|
+
"color-backdrop": "rgba(88, 88, 88, 0.62)",
|
|
55
|
+
"surface-glass": "color-mix(in srgb, #eef1f4 62%, #fafbfc)",
|
|
56
|
+
"surface-line": "color-mix(in srgb, #dbe1e6 72%, #fafbfc)",
|
|
57
|
+
"brand-violet": "#8a5a9e",
|
|
58
|
+
"brand-cyan": "#0b7285",
|
|
59
|
+
"brand-lime": "#3f7d3f",
|
|
60
|
+
"brand-coral": "#c1453b",
|
|
61
|
+
"brand-navy": "color-mix(in srgb, #1b2b34 70%, #fafbfc)",
|
|
62
|
+
"brand-violet-rgb": "138, 90, 158",
|
|
63
|
+
"brand-cyan-rgb": "11, 114, 133",
|
|
64
|
+
"brand-lime-rgb": "63, 125, 63",
|
|
65
|
+
"brand-coral-rgb": "193, 69, 59",
|
|
66
|
+
"accent-a": "#0b7285",
|
|
67
|
+
"accent-b": "#8a5a9e",
|
|
68
|
+
"accent-c": "#0b7285",
|
|
69
|
+
"accent-warm": "#9a6b1f",
|
|
70
|
+
"accent-cool": "#3a6ea8",
|
|
71
|
+
"accent-a-ink": "#0b7285",
|
|
72
|
+
"accent-b-ink": "#8a5a9e",
|
|
73
|
+
"accent-c-ink": "#0b7285",
|
|
74
|
+
"accent-warm-ink": "#9a6b1f",
|
|
75
|
+
"accent-cool-ink": "#3a6ea8",
|
|
76
|
+
"accent-coral-ink": "#c1453b",
|
|
77
|
+
"shiki-foreground": "#cdd3de",
|
|
78
|
+
"shiki-background": "#1b2b34",
|
|
79
|
+
"shiki-token-comment": "color-mix(in srgb, #cdd3de 55%, #1b2b34)",
|
|
80
|
+
"shiki-token-punctuation": "color-mix(in srgb, #cdd3de 72%, #1b2b34)",
|
|
81
|
+
"shiki-token-keyword": "#c594c5",
|
|
82
|
+
"shiki-token-string": "#99c794",
|
|
83
|
+
"shiki-token-string-expression": "#99c794",
|
|
84
|
+
"shiki-token-constant": "#fac863",
|
|
85
|
+
"shiki-token-function": "#6699cc",
|
|
86
|
+
"shiki-token-parameter": "#ec5f67",
|
|
87
|
+
"shiki-token-link": "#5fb3b3"
|
|
88
|
+
},
|
|
89
|
+
darkTokens: {
|
|
90
|
+
"color-code-line-highlight": "color-mix(in srgb, #6699cc 16%, transparent)",
|
|
91
|
+
"color-code-line-warning": "color-mix(in srgb, #fac863 18%, transparent)",
|
|
92
|
+
"color-code-line-warning-border": "#fac863",
|
|
93
|
+
"color-code-line-error": "color-mix(in srgb, #ec5f67 20%, transparent)",
|
|
94
|
+
"color-code-line-error-border": "#ec5f67",
|
|
95
|
+
"color-code-line-add": "color-mix(in srgb, #99c794 16%, transparent)",
|
|
96
|
+
"color-code-line-add-border": "#99c794",
|
|
97
|
+
"color-code-line-remove": "color-mix(in srgb, #ec5f67 14%, transparent)",
|
|
98
|
+
"color-code-line-remove-border": "#ec5f67",
|
|
99
|
+
"color-code-line-focus": "color-mix(in srgb, #6699cc 16%, transparent)",
|
|
100
|
+
"color-code-line-dim": "0.35",
|
|
101
|
+
"color-code-title-bg": "color-mix(in srgb, #16242c 92%, #cdd3de)",
|
|
102
|
+
"color-code-title-text": "color-mix(in srgb, #cdd3de 88%, #16242c)",
|
|
103
|
+
"color-code-title-border": "color-mix(in srgb, #cdd3de 22%, transparent)",
|
|
104
|
+
"color-code-line-number": "color-mix(in srgb, #cdd3de 48%, transparent)",
|
|
105
|
+
"color-code-frame-border": "color-mix(in srgb, #31424c 92%, transparent)",
|
|
106
|
+
"color-backdrop": "rgba(9, 15, 18, 0.62)",
|
|
107
|
+
"surface-glass": "color-mix(in srgb, #22333c 62%, #1b2b34)",
|
|
108
|
+
"surface-line": "color-mix(in srgb, #31424c 72%, #1b2b34)",
|
|
109
|
+
"brand-violet": "#c594c5",
|
|
110
|
+
"brand-cyan": "#5fb3b3",
|
|
111
|
+
"brand-lime": "#99c794",
|
|
112
|
+
"brand-coral": "#ec5f67",
|
|
113
|
+
"brand-navy": "color-mix(in srgb, #cdd3de 70%, #1b2b34)",
|
|
114
|
+
"brand-violet-rgb": "197, 148, 197",
|
|
115
|
+
"brand-cyan-rgb": "95, 179, 179",
|
|
116
|
+
"brand-lime-rgb": "153, 199, 148",
|
|
117
|
+
"brand-coral-rgb": "236, 95, 103",
|
|
118
|
+
"accent-a": "#6699cc",
|
|
119
|
+
"accent-b": "#c594c5",
|
|
120
|
+
"accent-c": "#5fb3b3",
|
|
121
|
+
"accent-warm": "#fac863",
|
|
122
|
+
"accent-cool": "#6699cc",
|
|
123
|
+
"accent-a-ink": "#6699cc",
|
|
124
|
+
"accent-b-ink": "#c594c5",
|
|
125
|
+
"accent-c-ink": "#5fb3b3",
|
|
126
|
+
"accent-warm-ink": "#fac863",
|
|
127
|
+
"accent-cool-ink": "#6699cc",
|
|
128
|
+
"accent-coral-ink": "#ed656d",
|
|
129
|
+
"shiki-foreground": "#cdd3de",
|
|
130
|
+
"shiki-background": "#16242c",
|
|
131
|
+
"shiki-token-comment": "color-mix(in srgb, #cdd3de 55%, #16242c)",
|
|
132
|
+
"shiki-token-punctuation": "color-mix(in srgb, #cdd3de 72%, #16242c)",
|
|
133
|
+
"shiki-token-keyword": "#c594c5",
|
|
134
|
+
"shiki-token-string": "#99c794",
|
|
135
|
+
"shiki-token-string-expression": "#99c794",
|
|
136
|
+
"shiki-token-constant": "#fac863",
|
|
137
|
+
"shiki-token-function": "#6699cc",
|
|
138
|
+
"shiki-token-parameter": "#ec5f67",
|
|
139
|
+
"shiki-token-link": "#5fb3b3"
|
|
140
|
+
}
|
|
141
|
+
};
|
|
142
|
+
//#endregion
|
|
143
|
+
export { oceanic as default, oceanic };
|
|
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 * Oceanic — Oceanic Next — deep slate teal.\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 oceanic: ThemeConfig = {\n name: \"oceanic\",\n colors: {\n primary: \"#0b7285\",\n primaryHover: \"#095c6b\",\n background: \"#fafbfc\",\n backgroundAlt: \"#eef1f4\",\n text: \"#1b2b34\",\n textMuted: \"#5b6b76\",\n border: \"#dbe1e6\",\n codeBackground: \"#1b2b34\",\n codeBackgroundTop: \"#1b2b34\",\n codeText: \"#cdd3de\",\n },\n darkColors: {\n primary: \"#6699cc\",\n primaryHover: \"#8fb6dc\",\n background: \"#1b2b34\",\n backgroundAlt: \"#22333c\",\n text: \"#cdd3de\",\n textMuted: \"#87949e\",\n border: \"#31424c\",\n codeBackground: \"#16242c\",\n codeBackgroundTop: \"#16242c\",\n codeText: \"#cdd3de\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #3a6ea8 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #9a6b1f 18%, transparent)\",\n \"color-code-line-warning-border\": \"#9a6b1f\",\n \"color-code-line-error\": \"color-mix(in srgb, #c1453b 20%, transparent)\",\n \"color-code-line-error-border\": \"#c1453b\",\n \"color-code-line-add\": \"color-mix(in srgb, #3f7d3f 16%, transparent)\",\n \"color-code-line-add-border\": \"#3f7d3f\",\n \"color-code-line-remove\": \"color-mix(in srgb, #c1453b 14%, transparent)\",\n \"color-code-line-remove-border\": \"#c1453b\",\n \"color-code-line-focus\": \"color-mix(in srgb, #0b7285 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #1b2b34 92%, #cdd3de)\",\n \"color-code-title-text\": \"color-mix(in srgb, #cdd3de 88%, #1b2b34)\",\n \"color-code-title-border\": \"color-mix(in srgb, #cdd3de 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #cdd3de 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #dbe1e6 92%, transparent)\",\n \"color-backdrop\": \"rgba(88, 88, 88, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #eef1f4 62%, #fafbfc)\",\n \"surface-line\": \"color-mix(in srgb, #dbe1e6 72%, #fafbfc)\",\n \"brand-violet\": \"#8a5a9e\",\n \"brand-cyan\": \"#0b7285\",\n \"brand-lime\": \"#3f7d3f\",\n \"brand-coral\": \"#c1453b\",\n \"brand-navy\": \"color-mix(in srgb, #1b2b34 70%, #fafbfc)\",\n \"brand-violet-rgb\": \"138, 90, 158\",\n \"brand-cyan-rgb\": \"11, 114, 133\",\n \"brand-lime-rgb\": \"63, 125, 63\",\n \"brand-coral-rgb\": \"193, 69, 59\",\n \"accent-a\": \"#0b7285\",\n \"accent-b\": \"#8a5a9e\",\n \"accent-c\": \"#0b7285\",\n \"accent-warm\": \"#9a6b1f\",\n \"accent-cool\": \"#3a6ea8\",\n \"accent-a-ink\": \"#0b7285\",\n \"accent-b-ink\": \"#8a5a9e\",\n \"accent-c-ink\": \"#0b7285\",\n \"accent-warm-ink\": \"#9a6b1f\",\n \"accent-cool-ink\": \"#3a6ea8\",\n \"accent-coral-ink\": \"#c1453b\",\n \"shiki-foreground\": \"#cdd3de\",\n \"shiki-background\": \"#1b2b34\",\n \"shiki-token-comment\": \"color-mix(in srgb, #cdd3de 55%, #1b2b34)\",\n \"shiki-token-punctuation\": \"color-mix(in srgb, #cdd3de 72%, #1b2b34)\",\n \"shiki-token-keyword\": \"#c594c5\",\n \"shiki-token-string\": \"#99c794\",\n \"shiki-token-string-expression\": \"#99c794\",\n \"shiki-token-constant\": \"#fac863\",\n \"shiki-token-function\": \"#6699cc\",\n \"shiki-token-parameter\": \"#ec5f67\",\n \"shiki-token-link\": \"#5fb3b3\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #6699cc 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #fac863 18%, transparent)\",\n \"color-code-line-warning-border\": \"#fac863\",\n \"color-code-line-error\": \"color-mix(in srgb, #ec5f67 20%, transparent)\",\n \"color-code-line-error-border\": \"#ec5f67\",\n \"color-code-line-add\": \"color-mix(in srgb, #99c794 16%, transparent)\",\n \"color-code-line-add-border\": \"#99c794\",\n \"color-code-line-remove\": \"color-mix(in srgb, #ec5f67 14%, transparent)\",\n \"color-code-line-remove-border\": \"#ec5f67\",\n \"color-code-line-focus\": \"color-mix(in srgb, #6699cc 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #16242c 92%, #cdd3de)\",\n \"color-code-title-text\": \"color-mix(in srgb, #cdd3de 88%, #16242c)\",\n \"color-code-title-border\": \"color-mix(in srgb, #cdd3de 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #cdd3de 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #31424c 92%, transparent)\",\n \"color-backdrop\": \"rgba(9, 15, 18, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #22333c 62%, #1b2b34)\",\n \"surface-line\": \"color-mix(in srgb, #31424c 72%, #1b2b34)\",\n \"brand-violet\": \"#c594c5\",\n \"brand-cyan\": \"#5fb3b3\",\n \"brand-lime\": \"#99c794\",\n \"brand-coral\": \"#ec5f67\",\n \"brand-navy\": \"color-mix(in srgb, #cdd3de 70%, #1b2b34)\",\n \"brand-violet-rgb\": \"197, 148, 197\",\n \"brand-cyan-rgb\": \"95, 179, 179\",\n \"brand-lime-rgb\": \"153, 199, 148\",\n \"brand-coral-rgb\": \"236, 95, 103\",\n \"accent-a\": \"#6699cc\",\n \"accent-b\": \"#c594c5\",\n \"accent-c\": \"#5fb3b3\",\n \"accent-warm\": \"#fac863\",\n \"accent-cool\": \"#6699cc\",\n \"accent-a-ink\": \"#6699cc\",\n \"accent-b-ink\": \"#c594c5\",\n \"accent-c-ink\": \"#5fb3b3\",\n \"accent-warm-ink\": \"#fac863\",\n \"accent-cool-ink\": \"#6699cc\",\n \"accent-coral-ink\": \"#ed656d\",\n \"shiki-foreground\": \"#cdd3de\",\n \"shiki-background\": \"#16242c\",\n \"shiki-token-comment\": \"color-mix(in srgb, #cdd3de 55%, #16242c)\",\n \"shiki-token-punctuation\": \"color-mix(in srgb, #cdd3de 72%, #16242c)\",\n \"shiki-token-keyword\": \"#c594c5\",\n \"shiki-token-string\": \"#99c794\",\n \"shiki-token-string-expression\": \"#99c794\",\n \"shiki-token-constant\": \"#fac863\",\n \"shiki-token-function\": \"#6699cc\",\n \"shiki-token-parameter\": \"#ec5f67\",\n \"shiki-token-link\": \"#5fb3b3\",\n },\n};\n\nexport default oceanic;\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-oceanic",
|
|
3
|
+
"version": "2.84.0",
|
|
4
|
+
"description": "Oceanic Next — deep slate teal — an Ox Content color scheme that composes with any @ox-content/theme-* skin",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"color-scheme",
|
|
7
|
+
"documentation",
|
|
8
|
+
"markdown",
|
|
9
|
+
"oceanic",
|
|
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/oceanic"
|
|
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
|
+
}
|