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

129
composables/themeList2.js Normal file
View File

@@ -0,0 +1,129 @@
export default function () {
return [
{
theme: "biru",
colors: [
{
name: "primary",
value: "0, 102, 204", // Strong blue
},
{
name: "secondary",
value: "51, 153, 255", // Lighter blue
},
{
name: "accent",
value: "255, 204, 0", // Gold
},
{
name: "background",
value: "240, 248, 255", // Alice blue
},
{
name: "text",
value: "0, 0, 0", // Black
},
],
},
{
theme: "merah",
colors: [
{
name: "primary",
value: "204, 0, 0", // Strong red
},
{
name: "secondary",
value: "255, 102, 102", // Lighter red
},
{
name: "accent",
value: "255, 255, 153", // Light yellow
},
{
name: "background",
value: "255, 240, 240", // Very light pink
},
{
name: "text",
value: "0, 0, 0", // Black
},
],
},
{
theme: "ungu",
colors: [
{
name: "primary",
value: "75, 0, 130", // Indigo
},
{
name: "secondary",
value: "138, 43, 226", // Blue violet
},
{
name: "accent",
value: "255, 215, 0", // Gold
},
{
name: "background",
value: "240, 248, 255", // Alice blue
},
{
name: "text",
value: "0, 0, 0", // Black
},
],
},
{
theme: "oren",
colors: [
{
name: "primary",
value: "255, 103, 0", // Dark orange
},
{
name: "secondary",
value: "255, 159, 64", // Lighter orange
},
{
name: "accent",
value: "0, 128, 128", // Teal
},
{
name: "background",
value: "255, 250, 240", // Floral white
},
{
name: "text",
value: "0, 0, 0", // Black
},
],
},
{
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
},
{
name: "background",
value: "245, 250, 255", // Very light blue background
},
{
name: "text",
value: "0, 0, 0", // Black
},
],
},
];
}