diff --git a/README.md b/README.md index 097ce73..954bdbb 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Afterwards, you will have to restart Kando, and then you can select the new them | Theme | Preview | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------- | | [**Adwaita Circles**](./themes/adwaita-circles/)
A clean theme aiming to follow the Adwaita design language from the Gnome Desktop.
Labels are only shown when hovering over a circle.

[![Download](https://img.shields.io/badge/🡇-Download-blue?style=flat)](https://github.com/kando-menu/menu-themes/releases/latest/download/adwaita-circles.zip) | ![preview](./themes/adwaita-circles/preview.jpg) | -| [**Alpha Neon**](./themes/alpha-neon/)
A futuristic take on the neon-light theme with 12 color options and 2 presets to help you utilize it.

[![Download](https://img.shields.io/badge/🡇-Download-blue?style=flat)](https://github.com/kando-menu/menu-themes/releases/latest/download/alpha-neon.zip) | ![preview](./themes/alpha-neon/preview.jpg) | +| [**Alpha Neon**](./themes/alpha-neon/)
A futuristic take on the neon-light theme with 14 color options and 3 presets to help you utilize it.

[![Download](https://img.shields.io/badge/🡇-Download-blue?style=flat)](https://github.com/kando-menu/menu-themes/releases/latest/download/alpha-neon.zip) | ![preview](./themes/alpha-neon/preview.jpg) | | [**Bent Photon**](./themes/bent-photon/)
A clean and stylish theme made by [NeighNeighNeigh](https://github.com/NeighNeighNeigh/Kando_Themes).

[![Download](https://img.shields.io/badge/🡇-Download-blue?style=flat)](https://github.com/kando-menu/menu-themes/releases/latest/download/bent-photon.zip) | ![preview](./themes/bent-photon/preview.jpg) | | [**EVNTech Vache**](./themes/evntech-vache/)
Mix of Nether Lables and default theme.

[![Download](https://img.shields.io/badge/🡇-Download-blue?style=flat)](https://github.com/kando-menu/menu-themes/releases/latest/download/evntech-vache.zip) | ![preview](./themes/evntech-vache/preview.jpg) | | [**Hexperiment**](./themes/hexperiment/)
A very experimental theme. It only works up to 6 items. Also, if you have fewer, you should ensure that all items are arranged in the six cardinal directions. Otherwise, the menu will look weird.

[![Download](https://img.shields.io/badge/🡇-Download-blue?style=flat)](https://github.com/kando-menu/menu-themes/releases/latest/download/hexperiment.zip) | ![preview](./themes/hexperiment/preview.jpg) | diff --git a/themes/alpha-neon/REUSE.toml b/themes/alpha-neon/REUSE.toml index e73b1df..cbd5ec9 100644 --- a/themes/alpha-neon/REUSE.toml +++ b/themes/alpha-neon/REUSE.toml @@ -12,14 +12,20 @@ SPDX-License-Identifier = "CC-BY-4.0" [[annotations]] path = ["presets/Dark.json"] precedence = "override" -SPDX-FileCopyrightText = "Discord user digitalart3d" +SPDX-FileCopyrightText = "Discord user Renshu" SPDX-License-Identifier = "CC-BY-4.0" [[annotations]] path = ["presets/Sterelia.json"] precedence = "override" -SPDX-FileCopyrightText = "Discord user Renshu" -SPDX-License-Identifier = "CC-BY-4.0" +SPDX-FileCopyrightText = "Elfi Ox " +SPDX-License-Identifier = "CC0-1.0" + +[[annotations]] +path = ["presets/Nether.json"] +precedence = "override" +SPDX-FileCopyrightText = "Elfi Ox " +SPDX-License-Identifier = "CC0-1.0" [[annotations]] path = ["banner.png"] diff --git a/themes/alpha-neon/banner.png b/themes/alpha-neon/banner.png index a049a14..d2abfbf 100644 Binary files a/themes/alpha-neon/banner.png and b/themes/alpha-neon/banner.png differ diff --git a/themes/alpha-neon/presets/Nether.json b/themes/alpha-neon/presets/Nether.json new file mode 100644 index 0000000..d1987f7 --- /dev/null +++ b/themes/alpha-neon/presets/Nether.json @@ -0,0 +1,18 @@ +{ + "colors": { + "Outer Ring": "rgb(211 173 255)", + "Inner Ring": "rgb(211 173 255)", + "Inner Ring〔active〕": "rgb(255 255 255 / 0)", + "Arrow": "rgb(211 173 255)", + "Connector": "rgb(211 173 255 / 0.69)", + "Separator": "rgb(211 173 255 / 0.5)", + "Wedge": "rgb(140 91 197 / 0.3)", + "Center Circle": "rgb(0 0 0 / 0.3)", + "Items Circles": "rgb(8 3 18 / 0.71)", + "Items Circles Border": "rgb(18 5 28 / 0.75)", + "Items Circles Border〔hovered〕": "rgb(211 173 255)", + "Items Circles Clicked": "rgb(211 173 255)", + "Icons": "rgb(211 173 255)", + "Text": "rgb(255 255 255)" + } +} \ No newline at end of file diff --git a/themes/alpha-neon/theme.css b/themes/alpha-neon/theme.css index fc1b4b9..cd9171d 100644 --- a/themes/alpha-neon/theme.css +++ b/themes/alpha-neon/theme.css @@ -66,7 +66,7 @@ center item and the child items. */ .icon-container { opacity: 0; - color: white; + color: var(--Icons); transition: var(--opacity-transition); filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 1)) /*-- ICONS DROP SHADOW --*/ } @@ -250,7 +250,7 @@ /* Center Text ------------------------------------------------------------------------ */ .center-text { - color: white; + color: var(--Text); transition: var(--opacity-transition); text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4); font-size: 13px; @@ -280,4 +280,4 @@ .separator { background: linear-gradient(to right, transparent 50px, var(--Separator) 100px, transparent 300px); } -} \ No newline at end of file +} diff --git a/themes/alpha-neon/theme.json5 b/themes/alpha-neon/theme.json5 index e58000a..c4941a3 100644 --- a/themes/alpha-neon/theme.json5 +++ b/themes/alpha-neon/theme.json5 @@ -12,7 +12,7 @@ name: 'Alpha Neon', author: 'AMINE | 3D ARTIST', license: 'CC0-1.0', - themeVersion: '3.0', + themeVersion: '3.1', // This theme was created for Kando's theme engine version 1. Kando will use this to // check if the theme is compatible with the current version of Kando. @@ -49,6 +49,8 @@ 'Items Circles Border': 'rgba(255, 255, 255, 0)', 'Items Circles Border〔hovered〕': 'rgba(255, 255, 255, 0)', 'Items Circles Clicked': 'rgba(255, 255, 255, 0)', + 'Icons': 'rgba(255, 255, 255, 1)', + 'Text': 'rgba(255, 255, 255, 1)', }, // This is a very complex theme with multiple layers.