Marketplace: light theme

This commit is contained in:
MotorTruck1221 2024-10-16 04:49:50 -06:00
parent 82edb6b284
commit 155051c5fe
No known key found for this signature in database
GPG key ID: 08F417E2B8B61EA4
3 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,19 @@
:root {
--background-primary: #aea2f2;
--background-lighter: #aea2f2;
--navbar-color: #d8d2fc;
--navbar-height: 60px;
--navbar-text-color: #ed1a56;
--navbar-link-color: #eb1a56;
--navbar-link-hover-color: #eb6f92;
--navbar-font: "Roboto";
--input-text-color: #ed1a56;
--input-placeholder-color: white;
--input-background-color: #d8d2fc;
--input-border-color: #eb6f92;
--input-border-size: 1.3px;
--navbar-logo-filter: none;
--dropdown-option-hover-color: #ae2f2;
--tab-color: var(--black);
--border-color: #eb6f92;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View file

@ -51,6 +51,17 @@ async function setupDB(db: ModelStatic<CatalogModel>) {
tags: ["Theme", "Simple", "Sleek"],
payload: "oled.css",
type: "theme"
},
{
package_name: "com.nebula.lightTheme",
title: "Light Theme",
image: "light.png",
author: "Nebula Services",
version: "1.0.0",
description: "A sleek light theme for Nebula",
tags: ["Theme", "Simple", "light", "light mode"],
payload: "light.css",
type: "theme"
}
];
const dbItems = await db.findAll();