diff --git a/public/store/backdrop/chocolate-hearts-2.png b/public/store/backdrop/chocolate-hearts-2.png new file mode 100644 index 0000000..23ea06e Binary files /dev/null and b/public/store/backdrop/chocolate-hearts-2.png differ diff --git a/public/store/backdrop/chocolate-hearts.png b/public/store/backdrop/chocolate-hearts.png new file mode 100644 index 0000000..250ede2 Binary files /dev/null and b/public/store/backdrop/chocolate-hearts.png differ diff --git a/public/store/backdrop/siege.png b/public/store/backdrop/siege.png new file mode 100644 index 0000000..58fd3ce Binary files /dev/null and b/public/store/backdrop/siege.png differ diff --git a/public/store/backdrop/snowflakes.png b/public/store/backdrop/snowflakes.png new file mode 100644 index 0000000..192a477 Binary files /dev/null and b/public/store/backdrop/snowflakes.png differ diff --git a/public/store/thumb/chocolate-hearts-2.png b/public/store/thumb/chocolate-hearts-2.png new file mode 100644 index 0000000..5811bb5 Binary files /dev/null and b/public/store/thumb/chocolate-hearts-2.png differ diff --git a/public/store/thumb/chocolate-hearts.png b/public/store/thumb/chocolate-hearts.png new file mode 100644 index 0000000..f16bc21 Binary files /dev/null and b/public/store/thumb/chocolate-hearts.png differ diff --git a/public/store/thumb/siege.png b/public/store/thumb/siege.png new file mode 100644 index 0000000..fbfda46 Binary files /dev/null and b/public/store/thumb/siege.png differ diff --git a/public/store/thumb/snowflakes.png b/public/store/thumb/snowflakes.png new file mode 100644 index 0000000..8e27cc6 Binary files /dev/null and b/public/store/thumb/snowflakes.png differ diff --git a/src/themes/themes.css b/src/themes/themes.css index 22bd927..5425e97 100644 --- a/src/themes/themes.css +++ b/src/themes/themes.css @@ -284,6 +284,26 @@ --backlight-color: yellow; } +[data-theme="neon-red"] { + color-scheme: dark; + --text-color: #e61c4a; + --background-color: #450015; + --surface-color: #5c001a; + --accent-color: #b70033; + --accent-text-color: #ffffff; + --error-color: #b90024; +} + +[data-theme="strawberry"] { + color-scheme: light; + --text-color: #ff6084; + --background-color: #ffc7d8; + --surface-color: #f4e6ec; + --accent-color: #ff6691; + --accent-text-color: #ffffff; + --error-color: #b90024; +} + #atreides-logo { display: none; } @@ -529,4 +549,48 @@ body[data-theme="dune-2"] #header > .virtual-clicker-logo { --accent-text-color: #171719; --error-color: #eb324b; background: url(/store/backdrop/milky-way.png) !important; -} \ No newline at end of file +} + +[data-theme="siege"] { + color-scheme: dark; + --text-color: #f5e3a4; + --background-color: #0d1806; + --surface-color: #3e160b; + --accent-color: #b57c49; + --accent-text-color: #ede5a9; + --error-color: #cb5a4f; + background: url(/store/backdrop/siege.png) !important; +} + +[data-theme="snowflakes"] { + color-scheme: light; + --text-color: #2c2c2c; + --background-color: #79bddf; + --surface-color: #d2d4da; + --accent-color: #73b9dc; + --accent-text-color: #e7e4ec; + --error-color: #eb324b; + background: url(/store/backdrop/snowflakes.png) !important; +} + +[data-theme="chocolate-hearts"] { + color-scheme: light; + --text-color: #ffffff; + --background-color: #ff2352; + --surface-color: #d50035; + --accent-color: #fd1e54; + --accent-text-color: #ffffff; + --error-color: #b90024; + background: url(/store/backdrop/chocolate-hearts.png) !important; +} + +[data-theme="chocolate-hearts-2"] { + color-scheme: light; + --text-color: #ff3462; + --background-color: #820024; + --surface-color: #f4e6ec; + --accent-color: #cc0039; + --accent-text-color: #ffffff; + --error-color: #b90024; + background: url(/store/backdrop/chocolate-hearts-2.png) !important; +} diff --git a/src/themes/themes.json b/src/themes/themes.json index 1fb3e18..0fd531f 100644 --- a/src/themes/themes.json +++ b/src/themes/themes.json @@ -45,5 +45,11 @@ ["galaxy", "Galaxy", "moon-stars", 70, [], true], ["galaxy-2", "Galaxy 2", "moon-stars", 70, ["galaxy"], true], ["northern-lights", "Northern Lights", "moon-stars", 80, ["galaxy", "galaxy-2"], true], - ["milky-way", "Milky Way", "moon-stars", 80, ["galaxy", "galaxy-2"], true] + ["milky-way", "Milky Way", "moon-stars", 80, ["galaxy", "galaxy-2"], true], + ["siege", "Siege", "gun", 60, [], false], + ["snowflakes", "Snowflakes", "snowflake", 80, ["snow"], true], + ["chocolate-hearts", "Chocolate Hearts", "heart", 80, ["rose-pro"], true], + ["chocolate-hearts-2", "Chocolate Hearts 2", "heart", 80, ["rose-pro", "chocolate-hearts"], true], + ["neon-red", "Neon Red", "", 0, [], false], + ["strawberry", "Strawberry", "", 0, [], false] ]