mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-11 06:59:59 +00:00
11 lines
225 B
TypeScript
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'
|
|
}
|