feat: add function

This commit is contained in:
Methapon Metanipat 2024-09-18 16:04:07 +07:00
parent f17bbecf46
commit 5ed29c3857
2 changed files with 74 additions and 23 deletions

View file

@ -0,0 +1,20 @@
export const productTreeDecoration = [
{
level: 0,
icon: 'mdi-folder-outline',
bg: 'hsla(var(--pink-6-hsl)/0.1)',
fg: 'var(--pink-6)',
},
{
level: 1,
icon: 'mdi-server-outline',
bg: 'hsla(var(--orange-5-hsl)/0.1)',
fg: 'var(--orange-5)',
},
{
level: 2,
icon: 'mdi-shopping-outline',
bg: 'hsla(var(--teal-10-hsl)/0.1)',
fg: 'var(--teal-10)',
},
];