Add color picker

This commit is contained in:
Rallegit
2024-10-26 21:43:47 +02:00
parent 62ad9bd381
commit 63819805c8
6 changed files with 83 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import { TextToCronComponent } from '../tools/client-side/text-to-cron/text-to-c
import { DdsToPngComponent } from '../tools/client-side/dds-to-png/dds-to-png.component';
import { ImageConverterComponent } from '../tools/server-side/image-converter/image-converter.component';
import { WordCounterComponent } from '../tools/client-side/word-counter/word-counter.component';
import { ColorPickerComponent } from '../tools/client-side/color-picker/color-picker/color-picker.component';
export const routes: Routes = [
{
@@ -48,6 +49,11 @@ export const routes: Routes = [
path: 'text-counter',
pathMatch: 'full',
component: WordCounterComponent
},
{
path: 'color-picker',
pathMatch: 'full',
component: ColorPickerComponent
}
];

View File

@@ -53,6 +53,11 @@ export class HeaderComponent implements OnInit {
label: 'Text to Cron Expression',
routerLink: 'text-to-cron',
routerLinkActiveOptions: { exact: true }
},
{
label: 'Color picker',
routerLink: 'color-picker',
routerLinkActiveOptions: { exact: true }
}
],