mirror of
https://github.com/Eugeny/tabby
synced 2025-01-09 19:59:18 +00:00
10 lines
224 B
TypeScript
10 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'
|
||
|
}
|