Update various configuration files, components, and assets; enhance notification system and API endpoints; improve documentation and styles across the application.

This commit is contained in:
Haqeem Solehan
2025-10-16 16:05:39 +08:00
commit b124ff8092
336 changed files with 94392 additions and 0 deletions

55
composables/themeList.js Normal file
View File

@@ -0,0 +1,55 @@
export default function () {
return [
{
theme: "biasa",
colors: [
{
name: "primary",
value: "243, 88, 106",
},
{
name: "secondary",
value: "240, 122, 37",
},
{
name: "accent",
value: "243, 244, 246",
},
],
},
{
theme: "gelap",
colors: [
{
name: "primary",
value: "243, 88, 106",
},
{
name: "secondary",
value: "240, 122, 37",
},
{
name: "accent",
value: "15, 23, 42",
},
],
},
{
theme: "LZS",
colors: [
{
name: "primary",
value: "0, 90, 173", // #005AAD - Blue
},
{
name: "secondary",
value: "141, 199, 61", // #8DC73D - Green
},
{
name: "accent",
value: "255, 242, 0", // #FFF200 - Yellow
},
],
},
];
}