tabby/terminus-core/src/theme.ts
Eugene Pankov 889a60ba3b lint
2017-05-01 13:35:26 +02:00

9 lines
224 B
TypeScript

import { Injectable } from '@angular/core'
import { Theme } from './api'
@Injectable()
export class StandardTheme extends Theme {
name = 'Standard'
css = require('./theme.scss')
terminalBackground = '#1D272D'
}