mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 20:43:41 +00:00
* feat: add themes * fix: remove obvious issues with light theme * chore: improve light theme a bit * comment out theme swticher * chore: make login dark * add theme and widgets to seeds * add theme and widgets to migration --------- Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
import { NgModule } from '@angular/core'
|
|
|
|
import { DarkThemeComponent } from './dark-theme.component'
|
|
|
|
@NgModule({
|
|
declarations: [DarkThemeComponent],
|
|
exports: [DarkThemeComponent],
|
|
})
|
|
export class DarkThemeModule {}
|