aboutsummaryrefslogtreecommitdiff
path: root/src/tools/color-converter/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/color-converter/index.ts')
-rw-r--r--src/tools/color-converter/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/color-converter/index.ts b/src/tools/color-converter/index.ts
new file mode 100644
index 0000000..6ad7b22
--- /dev/null
+++ b/src/tools/color-converter/index.ts
@@ -0,0 +1,11 @@
+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,
+};