Eugene Pankov c3cc57f897 .
2017-04-14 18:29:49 +02:00

11 lines
225 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'
}