https://github.com/itsjonq/outrunner
🕶Outrunner: A Radical VS Code Theme
https://github.com/itsjonq/outrunner
Last synced: about 2 months ago
JSON representation
🕶Outrunner: A Radical VS Code Theme
- Host: GitHub
- URL: https://github.com/itsjonq/outrunner
- Owner: ItsJonQ
- License: mit
- Created: 2019-04-21T16:27:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-21T16:47:36.000Z (over 7 years ago)
- Last Synced: 2025-12-01T11:32:42.651Z (8 months ago)
- Language: JavaScript
- Size: 344 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🕶 Outrunner
[](https://marketplace.visualstudio.com/items?itemName=itsjonq.outrunner)
> A radical theme for VS Code
## Generate
This is the magic sauce for Refined's themes!
### Setup
This project only has a couple of dependencies, which it uses to generate the VS Code `theme.json` files.
To install the dependencies, run:
```
npm install
```
To build the theme file(s), run:
```
npm start
```
### Theme files
A theme only really requires a single shade, which makes up the background.
**Example**
```js
// themes/palenight.js
const colors = require('../colors/default')
const config = {
name: 'Dark (Palenight)',
type: 'dark',
}
const shades = {
background: '#292d3e',
}
module.exports = {
config,
shades,
colors,
}
```
The theme is generated into `/themes/`, with it's details added to `package.json` - ready for publishing!
## See Also
- [Owlet Theme](https://github.com/ItsJonQ/owlet)