mirror of
https://github.com/Eugeny/tabby
synced 2025-01-25 03:15:38 +00:00
9 lines
224 B
TypeScript
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'
|
|
}
|