mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-08 21:40:03 +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'
|
|
}
|