Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Prettier 💅
  • Loading branch information
kutyel committed Aug 29, 2018
commit 53a0a2c9e8218f28bf6a60f793f4fa1ff6d49edd
94 changes: 34 additions & 60 deletions themes/vsDark.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,95 +4,69 @@
/*:: import type { PrismTheme } from '../src/types' */

var theme /*: PrismTheme */ = {
"plain": {
"color": "#D4D4D4",
"backgroundColor": "#1E1E1E"
plain: {
color: "#D4D4D4",
backgroundColor: "#1E1E1E"
},
"styles": [
styles: [
{
"types": [
"prolog"
],
"style": {
"color": "rgb(0, 0, 128)"
types: ["prolog"],
style: {
color: "rgb(0, 0, 128)"
}
},
{
"types": [
"comment"
],
"style": {
"color": "rgb(106, 153, 85)"
types: ["comment"],
style: {
color: "rgb(106, 153, 85)"
}
},
{
"types": [
"builtin",
"tag",
"changed",
"keyword"
],
"style": {
"color": "rgb(86, 156, 214)"
types: ["builtin", "tag", "changed", "keyword"],
style: {
color: "rgb(86, 156, 214)"
}
},
{
"types": [
"number",
"inserted"
],
"style": {
"color": "rgb(181, 206, 168)"
types: ["number", "inserted"],
style: {
color: "rgb(181, 206, 168)"
}
},
{
"types": [
"constant"
],
"style": {
"color": "rgb(100, 102, 149)"
types: ["constant"],
style: {
color: "rgb(100, 102, 149)"
}
},
{
"types": [
"attr-name",
"variable"
],
"style": {
"color": "rgb(156, 220, 254)"
types: ["attr-name", "variable"],
style: {
color: "rgb(156, 220, 254)"
}
},
{
"types": [
"deleted",
"string"
],
"style": {
"color": "rgb(206, 145, 120)"
types: ["deleted", "string"],
style: {
color: "rgb(206, 145, 120)"
}
},
{
"types": [
"selector"
],
"style": {
"color": "rgb(215, 186, 125)"
types: ["selector"],
style: {
color: "rgb(215, 186, 125)"
}
},
{
"types": [
"punctuation"
],
"style": {
"color": "rgb(128, 128, 128)"
types: ["punctuation"],
style: {
color: "rgb(128, 128, 128)"
}
},
{
"types": [
"operator"
],
"style": {
"color": "rgb(212, 212, 212)"
types: ["operator"],
style: {
color: "rgb(212, 212, 212)"
}
}
]
Expand Down
111 changes: 40 additions & 71 deletions themes/vsDarkPlus.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,112 +4,81 @@
/*:: import type { PrismTheme } from '../src/types' */

var theme /*: PrismTheme */ = {
"plain": {
"color": "#D4D4D4",
"backgroundColor": "#1E1E1E"
plain: {
color: "#D4D4D4",
backgroundColor: "#1E1E1E"
},
"styles": [
styles: [
{
"types": [
"prolog"
],
"style": {
"color": "rgb(0, 0, 128)"
types: ["prolog"],
style: {
color: "rgb(0, 0, 128)"
}
},
{
"types": [
"comment"
],
"style": {
"color": "rgb(106, 153, 85)"
types: ["comment"],
style: {
color: "rgb(106, 153, 85)"
}
},
{
"types": [
"builtin",
"tag",
"changed",
"punctuation",
"keyword"
],
"style": {
"color": "rgb(86, 156, 214)"
types: ["builtin", "tag", "changed", "punctuation", "keyword"],
style: {
color: "rgb(86, 156, 214)"
}
},
{
"types": [
"number",
"inserted"
],
"style": {
"color": "rgb(181, 206, 168)"
types: ["number", "inserted"],
style: {
color: "rgb(181, 206, 168)"
}
},
{
"types": [
"constant"
],
"style": {
"color": "rgb(100, 102, 149)"
types: ["constant"],
style: {
color: "rgb(100, 102, 149)"
}
},
{
"types": [
"attr-name",
"variable"
],
"style": {
"color": "rgb(156, 220, 254)"
types: ["attr-name", "variable"],
style: {
color: "rgb(156, 220, 254)"
}
},
{
"types": [
"deleted",
"string"
],
"style": {
"color": "rgb(206, 145, 120)"
types: ["deleted", "string"],
style: {
color: "rgb(206, 145, 120)"
}
},
{
"types": [
"selector"
],
"style": {
"color": "rgb(215, 186, 125)"
types: ["selector"],
style: {
color: "rgb(215, 186, 125)"
}
},
{
"types": [
"operator"
],
"style": {
"color": "rgb(212, 212, 212)"
types: ["operator"],
style: {
color: "rgb(212, 212, 212)"
}
},
{
"types": [
"function"
],
"style": {
"color": "rgb(220, 220, 170)"
types: ["function"],
style: {
color: "rgb(220, 220, 170)"
}
},
{
"types": [
"class-name"
],
"style": {
"color": "rgb(78, 201, 176)"
types: ["class-name"],
style: {
color: "rgb(78, 201, 176)"
}
},
{
"types": [
"char"
],
"style": {
"color": "rgb(209, 105, 105)"
types: ["char"],
style: {
color: "rgb(209, 105, 105)"
}
}
]
Expand Down