diff --git a/themes/vsDark.js b/themes/vsDark.js new file mode 100644 index 0000000..589ee23 --- /dev/null +++ b/themes/vsDark.js @@ -0,0 +1,75 @@ +// @flow +// Converted automatically using ./tools/themeFromVsCode + +/*:: import type { PrismTheme } from '../src/types' */ + +var theme /*: PrismTheme */ = { + plain: { + color: "#D4D4D4", + backgroundColor: "#1E1E1E" + }, + styles: [ + { + types: ["prolog"], + style: { + color: "rgb(0, 0, 128)" + } + }, + { + types: ["comment"], + style: { + color: "rgb(106, 153, 85)" + } + }, + { + types: ["builtin", "tag", "changed", "keyword"], + style: { + color: "rgb(86, 156, 214)" + } + }, + { + types: ["number", "inserted"], + style: { + color: "rgb(181, 206, 168)" + } + }, + { + types: ["constant"], + style: { + color: "rgb(100, 102, 149)" + } + }, + { + types: ["attr-name", "variable"], + style: { + color: "rgb(156, 220, 254)" + } + }, + { + types: ["deleted", "string"], + style: { + color: "rgb(206, 145, 120)" + } + }, + { + types: ["selector"], + style: { + color: "rgb(215, 186, 125)" + } + }, + { + types: ["punctuation"], + style: { + color: "rgb(128, 128, 128)" + } + }, + { + types: ["operator"], + style: { + color: "rgb(212, 212, 212)" + } + } + ] +}; + +module.exports = theme; diff --git a/themes/vsDarkPlus.js b/themes/vsDarkPlus.js new file mode 100644 index 0000000..a5b4724 --- /dev/null +++ b/themes/vsDarkPlus.js @@ -0,0 +1,87 @@ +// @flow +// Converted automatically using ./tools/themeFromVsCode + +/*:: import type { PrismTheme } from '../src/types' */ + +var theme /*: PrismTheme */ = { + plain: { + color: "#D4D4D4", + backgroundColor: "#1E1E1E" + }, + styles: [ + { + types: ["prolog"], + style: { + color: "rgb(0, 0, 128)" + } + }, + { + types: ["comment"], + style: { + color: "rgb(106, 153, 85)" + } + }, + { + types: ["builtin", "tag", "changed", "punctuation", "keyword"], + style: { + color: "rgb(86, 156, 214)" + } + }, + { + types: ["number", "inserted"], + style: { + color: "rgb(181, 206, 168)" + } + }, + { + types: ["constant"], + style: { + color: "rgb(100, 102, 149)" + } + }, + { + types: ["attr-name", "variable"], + style: { + color: "rgb(156, 220, 254)" + } + }, + { + types: ["deleted", "string"], + style: { + color: "rgb(206, 145, 120)" + } + }, + { + types: ["selector"], + style: { + color: "rgb(215, 186, 125)" + } + }, + { + types: ["operator"], + style: { + color: "rgb(212, 212, 212)" + } + }, + { + types: ["function"], + style: { + color: "rgb(220, 220, 170)" + } + }, + { + types: ["class-name"], + style: { + color: "rgb(78, 201, 176)" + } + }, + { + types: ["char"], + style: { + color: "rgb(209, 105, 105)" + } + } + ] +}; + +module.exports = theme;