Skip to content

Commit 344904f

Browse files
authored
Add VS Light theme (#95)
1 parent 8caf552 commit 344904f

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed

src/themes/vsLight.js

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
// @flow
2+
// Converted automatically using ./tools/themeFromVsCode
3+
4+
import type { PrismTheme } from "../types"
5+
6+
var theme: PrismTheme = {
7+
plain: {
8+
color: "#000000",
9+
backgroundColor: "#ffffff",
10+
},
11+
styles: [
12+
{
13+
types: ["comment"],
14+
style: {
15+
color: "rgb(0, 128, 0)",
16+
},
17+
},
18+
{
19+
types: ["builtin"],
20+
style: {
21+
color: "rgb(0, 112, 193)",
22+
},
23+
},
24+
{
25+
types: ["number", "variable", "inserted"],
26+
style: {
27+
color: "rgb(9, 134, 88)",
28+
},
29+
},
30+
{
31+
types: ["operator"],
32+
style: {
33+
color: "rgb(0, 0, 0)",
34+
},
35+
},
36+
{
37+
types: ["constant", "char"],
38+
style: {
39+
color: "rgb(129, 31, 63)",
40+
},
41+
},
42+
{
43+
types: ["tag"],
44+
style: {
45+
color: "rgb(128, 0, 0)",
46+
},
47+
},
48+
{
49+
types: ["attr-name"],
50+
style: {
51+
color: "rgb(255, 0, 0)",
52+
},
53+
},
54+
{
55+
types: ["deleted", "string"],
56+
style: {
57+
color: "rgb(163, 21, 21)",
58+
},
59+
},
60+
{
61+
types: ["changed", "punctuation"],
62+
style: {
63+
color: "rgb(4, 81, 165)",
64+
},
65+
},
66+
{
67+
types: ["function", "keyword"],
68+
style: {
69+
color: "rgb(0, 0, 255)",
70+
},
71+
},
72+
{
73+
types: ["class-name"],
74+
style: {
75+
color: "rgb(38, 127, 153)",
76+
},
77+
},
78+
],
79+
}
80+
81+
export default theme

0 commit comments

Comments
 (0)