Remove generate.js from theme

This commit is contained in:
Daniel Imms
2017-03-22 22:25:30 -07:00
parent 21aceca3cf
commit 4c8e415126

View File

@@ -1,73 +0,0 @@
"use strict";
var path = require('path');
var dist_1 = require('../dist');
var sapphireColors = {
red: '#DA6771',
redLight: '#e5949b',
green: '#4EB071',
greenDim: '#275839',
yellow: '#fff099',
blue: '#399EF4',
blueLight: '#9fcff9',
pink: '#B168DF',
teal: '#21C5C7',
grey: '#4A5160'
};
var sapphireColorSet = {
syntax: {
identifier: sapphireColors.blueLight,
string: sapphireColors.red,
number: sapphireColors.redLight,
keyword: sapphireColors.blue,
boolean: sapphireColors.blue,
function: sapphireColors.teal,
functionCall: sapphireColors.yellow,
storage: sapphireColors.blue,
comment: sapphireColors.grey,
class: sapphireColors.teal,
classMember: sapphireColors.teal,
type: sapphireColors.green,
this: sapphireColors.blue,
cssClass: sapphireColors.blue,
cssId: sapphireColors.red,
cssTag: sapphireColors.teal,
markdownQuote: '#c0c0c0'
},
ui: {
background: '#12171f',
foreground: '#efefef',
accent: '#0a0d12',
cursor: '#ffffff',
guide: '#263040',
invisibles: '#263040',
rangeHighlight: '#263040',
// Bright red 50% opacity
findMatchHighlight: '#cb606080',
// Brighter red 50% opacity
currentFindMatchHighlight: '#ff777780',
selection: '#153958',
// Blue 50% opacity
selectionHighlight: '#2b74b380',
// White with ~10% opacity
wordHighlight: '#ffffff18',
wordHighlightStrong: '#ffffff18',
activeLinkForeground: sapphireColors.blue,
ansiBlack: '#666666',
ansiRed: sapphireColors.red,
ansiGreen: sapphireColors.green,
ansiYellow: sapphireColors.yellow,
ansiBlue: sapphireColors.blue,
ansiMagenta: sapphireColors.pink,
ansiCyan: sapphireColors.teal,
ansiWhite: '#efefef',
ansiBrightBlack: '#666666',
ansiBrightRed: sapphireColors.red,
ansiBrightGreen: sapphireColors.green,
ansiBrightYellow: sapphireColors.yellow,
ansiBrightBlue: sapphireColors.blue,
ansiBrightMagenta: sapphireColors.pink,
ansiBrightCyan: sapphireColors.teal,
ansiBrightWhite: '#efefef'
}
};
dist_1.generateTheme('Generated Theme', sapphireColorSet, path.join(__dirname, 'theme', 'theme.json'));