@pierre/theme 0.0.26 → 0.0.27
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/dist/index.d.mts +1 -0
- package/dist/pierre-dark-vibrant.d.mts +15 -0
- package/dist/pierre-dark.d.mts +15 -0
- package/dist/pierre-light-vibrant.d.mts +15 -0
- package/dist/pierre-light.d.mts +15 -0
- package/package.json +21 -6
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const themeNames: readonly string[];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly type: "light" | "dark";
|
|
5
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
6
|
+
readonly tokenColors: ReadonlyArray<{
|
|
7
|
+
readonly name?: string;
|
|
8
|
+
readonly scope?: string | string[];
|
|
9
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
10
|
+
}>;
|
|
11
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare const theme: PierreTheme;
|
|
15
|
+
export default theme;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly type: "light" | "dark";
|
|
5
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
6
|
+
readonly tokenColors: ReadonlyArray<{
|
|
7
|
+
readonly name?: string;
|
|
8
|
+
readonly scope?: string | string[];
|
|
9
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
10
|
+
}>;
|
|
11
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare const theme: PierreTheme;
|
|
15
|
+
export default theme;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly type: "light" | "dark";
|
|
5
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
6
|
+
readonly tokenColors: ReadonlyArray<{
|
|
7
|
+
readonly name?: string;
|
|
8
|
+
readonly scope?: string | string[];
|
|
9
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
10
|
+
}>;
|
|
11
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare const theme: PierreTheme;
|
|
15
|
+
export default theme;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly type: "light" | "dark";
|
|
5
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
6
|
+
readonly tokenColors: ReadonlyArray<{
|
|
7
|
+
readonly name?: string;
|
|
8
|
+
readonly scope?: string | string[];
|
|
9
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
10
|
+
}>;
|
|
11
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare const theme: PierreTheme;
|
|
15
|
+
export default theme;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@pierre/theme",
|
|
3
3
|
"displayName": "Pierre Theme",
|
|
4
4
|
"description": "Pierre theme for Shiki, VS Code, and more",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.27",
|
|
6
6
|
"publisher": "pierrecomputer",
|
|
7
7
|
"icon": "icon.png",
|
|
8
8
|
"galleryBanner": {
|
|
@@ -63,11 +63,26 @@
|
|
|
63
63
|
"icon.png"
|
|
64
64
|
],
|
|
65
65
|
"exports": {
|
|
66
|
-
".":
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"./pierre-
|
|
66
|
+
".": {
|
|
67
|
+
"types": "./dist/index.d.mts",
|
|
68
|
+
"default": "./dist/index.mjs"
|
|
69
|
+
},
|
|
70
|
+
"./pierre-dark": {
|
|
71
|
+
"types": "./dist/pierre-dark.d.mts",
|
|
72
|
+
"default": "./dist/pierre-dark.mjs"
|
|
73
|
+
},
|
|
74
|
+
"./pierre-light": {
|
|
75
|
+
"types": "./dist/pierre-light.d.mts",
|
|
76
|
+
"default": "./dist/pierre-light.mjs"
|
|
77
|
+
},
|
|
78
|
+
"./pierre-dark-vibrant": {
|
|
79
|
+
"types": "./dist/pierre-dark-vibrant.d.mts",
|
|
80
|
+
"default": "./dist/pierre-dark-vibrant.mjs"
|
|
81
|
+
},
|
|
82
|
+
"./pierre-light-vibrant": {
|
|
83
|
+
"types": "./dist/pierre-light-vibrant.d.mts",
|
|
84
|
+
"default": "./dist/pierre-light-vibrant.mjs"
|
|
85
|
+
},
|
|
71
86
|
"./themes/*": "./themes/*"
|
|
72
87
|
},
|
|
73
88
|
"publishConfig": {
|