Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add VS Light theme #95

Merged
merged 1 commit into from Feb 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
81 changes: 81 additions & 0 deletions src/themes/vsLight.js
@@ -0,0 +1,81 @@
// @flow
// Converted automatically using ./tools/themeFromVsCode

import type { PrismTheme } from "../types"

var theme: PrismTheme = {
plain: {
color: "#000000",
backgroundColor: "#ffffff",
},
styles: [
{
types: ["comment"],
style: {
color: "rgb(0, 128, 0)",
},
},
{
types: ["builtin"],
style: {
color: "rgb(0, 112, 193)",
},
},
{
types: ["number", "variable", "inserted"],
style: {
color: "rgb(9, 134, 88)",
},
},
{
types: ["operator"],
style: {
color: "rgb(0, 0, 0)",
},
},
{
types: ["constant", "char"],
style: {
color: "rgb(129, 31, 63)",
},
},
{
types: ["tag"],
style: {
color: "rgb(128, 0, 0)",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(255, 0, 0)",
},
},
{
types: ["deleted", "string"],
style: {
color: "rgb(163, 21, 21)",
},
},
{
types: ["changed", "punctuation"],
style: {
color: "rgb(4, 81, 165)",
},
},
{
types: ["function", "keyword"],
style: {
color: "rgb(0, 0, 255)",
},
},
{
types: ["class-name"],
style: {
color: "rgb(38, 127, 153)",
},
},
],
}

export default theme