An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# 🕶 Outrunner

[![Version](https://vsmarketplacebadge.apphb.com/version/itsjonq.outrunner.svg)](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)