carta-md
Version:
A lightweight, fully customizable, Markdown editor
53 lines (52 loc) • 1.19 kB
TypeScript
declare const theme: {
displayName: "Carta Dark";
name: "carta-dark";
semanticHighlighting: true;
fg: string;
bg: string;
tokenColors: ({
scope: string[];
settings: {
foreground: string;
fontStyle?: undefined;
background?: undefined;
};
} | {
scope: string;
settings: {
foreground: string;
fontStyle?: undefined;
background?: undefined;
};
} | {
scope: string;
settings: {
fontStyle: string;
foreground: string;
background?: undefined;
};
} | {
scope: string;
settings: {
background: string;
fontStyle: string;
foreground: string;
};
} | {
scope: string[];
settings: {
fontStyle: string;
foreground: string;
background?: undefined;
};
} | {
scope: string[];
settings: {
background: string;
foreground: string;
fontStyle?: undefined;
};
})[];
type: "light";
};
export default theme;