Move theme related things into its own subfolder

This will make contributions easier and less prone to conflicts.
This commit is contained in:
Martin Fournier
2022-01-19 07:02:58 -05:00
parent aae3851d59
commit a9e2e35446
26 changed files with 685 additions and 622 deletions
+42
View File
@@ -0,0 +1,42 @@
import { IPredefinedTheme } from "../../Themes";
export const Theme: IPredefinedTheme = {
name: "Dark Blue",
credit: "Saynt_Garmo",
reference: "https://discord.com/channels/415207508303544321/921991895230611466/923084732718264340",
colors: {
primarylight: "#023DDE",
primary: "#4A41C8",
primarydark: "#005299",
successlight: "#00FF00",
success: "#D1DAD1",
successdark: "#BFCABF",
errorlight: "#f00",
error: "#c00",
errordark: "#900",
secondarylight: "#AAA",
secondary: "#888",
secondarydark: "#666",
warninglight: "#ff0",
warning: "#cc0",
warningdark: "#990",
infolight: "#69f",
info: "#36c",
infodark: "#039",
welllight: "#444",
well: "#040505",
white: "#fff",
black: "#000000",
hp: "#dd3434",
money: "#ffd700",
hack: "#adff2f",
combat: "#faffdf",
cha: "#a671d1",
int: "#6495ed",
rep: "#faffdf",
disabled: "#66cfbc",
backgroundprimary: "#091419",
backgroundsecondary: "#000000",
button: "#000000",
},
};