This commit is contained in:
Daniel Imms
2016-10-25 12:49:59 -07:00
parent 0a034851c9
commit 5be721e29d
4 changed files with 9 additions and 12 deletions

View File

@@ -1,4 +1,10 @@
# editor-theme-generator
An early proof of concept of a program that can generate theme files for editors (well anything really), based on a set of colors. The benefit of this is that instead of building a new .tmTheme for example, there can be a single source of truth. This single source of truth could work out all the kinks for various languages for each editor and its grammar such that when someone wants to create a new editor would do is to just fill in the colors they want. Instead of further fragmenting the tmTheme situation by creating or forking a theme.
## Usage
```bash
typings install
npm run build
```
npm start
```

View File

@@ -14,7 +14,6 @@
},
"devDependencies": {
"@types/node": "^6.0.41",
"typescript": "^2.0.3",
"typings": "^1.4.0"
"typescript": "^2.0.3"
}
}

View File

@@ -1,5 +1,3 @@
///<reference path="../typings/globals/node/index.d.ts"/>
import * as fs from 'fs';
import * as path from 'path';
import { IColorSet } from './themeGenerator'

View File

@@ -1,6 +0,0 @@
{
"name": "theme-generator",
"globalDependencies": {
"node": "registry:env/node#6.0.0+20160918225031"
}
}