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:
55
composables/themeList.js
Normal file
55
composables/themeList.js
Normal 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
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user