-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.d.ts
More file actions
36 lines (34 loc) · 773 Bytes
/
index.d.ts
File metadata and controls
36 lines (34 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export interface Theme {
$schema?: string;
name: string;
type: 'light' | 'dark';
colors: Record<string, string>;
semanticHighlighting?: boolean;
semanticTokenColors?: Record<string, any>;
tokenColors: Array<{
name?: string;
scope?: string | string[];
settings: {
foreground?: string;
background?: string;
fontStyle?: string;
};
}>;
// Shiki compatibility
settings?: Array<{
settings: {
foreground?: string;
background?: string;
};
}>;
}
export const bootstrapLight: Theme;
export const bootstrapDark: Theme;
export const bootstrapLightVibrant: Theme;
export const bootstrapDarkVibrant: Theme;
export const themes: {
light: Theme;
dark: Theme;
lightVibrant: Theme;
darkVibrant: Theme;
};