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
Next Next commit
Add dark vs-code themes! 🕶️
  • Loading branch information
kutyel committed Aug 29, 2018
commit 12c2a8b3b959111ca61372badbf45e63bea7d817
101 changes: 101 additions & 0 deletions themes/vsDark.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
// @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;
118 changes: 118 additions & 0 deletions themes/vsDarkPlus.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
// @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;