blob: e42ab378aa41ecfaa4553477ab2d9e8badf07e87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Palette } from '@vicons/tabler';
import type { ITool } from './../Tool';
export const tool: ITool = {
name: 'Color converter',
path: '/color-converter',
description: 'Convert color between the different formats (hex, rgb, hsl and css name)',
keywords: ['color', 'converter'],
component: () => import('./color-converter.vue'),
icon: Palette,
redirectFrom: ['/color-picker-converter'],
};
|