diff --git a/.gitignore b/.gitignore
index 8e190a4..d5011f1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -208,9 +208,9 @@ htdocs/logs/
# ============================================================
# Template Customizations
# ============================================================
-# Ignore custom color scheme files to prevent fork-specific customizations
-src/media/css/colors/light/colors_custom.css
-src/media/css/colors/dark/colors_custom.css
+# Ignore custom theme files to prevent fork-specific customizations
+src/media/css/theme/light.custom.css
+src/media/css/theme/dark.custom.css
# Ignore user customization files to prevent local development overrides
src/media/css/user.css
diff --git a/README.md b/README.md
index 64bc9f3..ba1a93e 100644
--- a/README.md
+++ b/README.md
@@ -203,13 +203,13 @@ Access template configuration via **System → Site Templates → MokoCassiopeia
- **Left Drawer Icon**: Font Awesome icon class (e.g., `fa-solid fa-chevron-right`)
- **Right Drawer Icon**: Font Awesome icon class (e.g., `fa-solid fa-chevron-left`)
-### Custom Color Palettes
+### Custom Theme Palettes
-MokoCassiopeia supports custom color schemes:
+MokoCassiopeia supports custom theme schemes:
1. **Copy template files** from `/templates/` directory:
- - `colors_custom_light.css` → `media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css`
- - `colors_custom_dark.css` → `media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css`
+ - `theme_custom_light.css` → `media/templates/site/mokocassiopeia/css/theme/light.custom.css`
+ - `theme_custom_dark.css` → `media/templates/site/mokocassiopeia/css/theme/dark.custom.css`
2. **Customize** the CSS variables to match your brand colors
3. **Enable in Joomla**: System → Site Templates → MokoCassiopeia → Theme tab → Set palette to "Custom"
4. **Save** and view your site with custom colors
diff --git a/docs/CSS_VARIABLES.md b/docs/CSS_VARIABLES.md
index ad65e28..5a07b80 100644
--- a/docs/CSS_VARIABLES.md
+++ b/docs/CSS_VARIABLES.md
@@ -46,8 +46,8 @@ This document provides a complete reference of all CSS variables available in th
To create custom color schemes:
1. **Copy template files** from `./templates/` directory:
- - `colors_custom_light.css` → `media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css`
- - `colors_custom_dark.css` → `media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css`
+ - `theme_custom_light.css` → `media/templates/site/mokocassiopeia/css/theme/light.custom.css`
+ - `theme_custom_dark.css` → `media/templates/site/mokocassiopeia/css/theme/dark.custom.css`
2. **Edit the variables** in the copied files to match your brand
diff --git a/docs/MODULE_OVERRIDES.md b/docs/MODULE_OVERRIDES.md
index d2c9f5b..100ba07 100644
--- a/docs/MODULE_OVERRIDES.md
+++ b/docs/MODULE_OVERRIDES.md
@@ -587,7 +587,7 @@ cp -r src/html/mod_virtuemart_cart src/html/mod_virtuemart_cart_original
Override CSS variables in your custom color scheme:
```css
-/* src/media/css/colors/light/colors_custom.css */
+/* src/media/css/theme/light.custom.css */
:root {
--vm-price-color: #28a745;
--vm-cart-bg: #f8f9fa;
diff --git a/src/error.php b/src/error.php
index 2003598..60b674f 100644
--- a/src/error.php
+++ b/src/error.php
@@ -68,22 +68,22 @@ $darkKey = 'template.dark.' . $colorDarkKey;
try {
$wa->useStyle('template.light.colors_standard');
} catch (\Throwable $e) {
- $wa->registerAndUseStyle('template.light.colors_standard', $templatePath . '/css/colors/light/colors_standard.css');
+ $wa->registerAndUseStyle('template.light.colors_standard', $templatePath . '/css/theme/light.standard.css');
}
try {
$wa->useStyle('template.dark.colors_standard');
} catch (\Throwable $e) {
- $wa->registerAndUseStyle('template.dark.colors_standard', $templatePath . '/css/colors/dark/colors_standard.css');
+ $wa->registerAndUseStyle('template.dark.colors_standard', $templatePath . '/css/theme/dark.standard.css');
}
try {
$wa->useStyle($lightKey);
} catch (\Throwable $e) {
- $wa->registerAndUseStyle('template.light.dynamic', $templatePath . '/css/colors/light/' . $colorLightKey . '.css');
+ $wa->registerAndUseStyle('template.light.dynamic', $templatePath . '/css/theme/' . $colorLightKey . '.css');
}
try {
$wa->useStyle($darkKey);
} catch (\Throwable $e) {
- $wa->registerAndUseStyle('template.dark.dynamic', $templatePath . '/css/colors/dark/' . $colorDarkKey . '.css');
+ $wa->registerAndUseStyle('template.dark.dynamic', $templatePath . '/css/theme/' . $colorDarkKey . '.css');
}
// Scripts
diff --git a/src/joomla.asset.json b/src/joomla.asset.json
index 9516721..a084ce0 100644
--- a/src/joomla.asset.json
+++ b/src/joomla.asset.json
@@ -77,15 +77,15 @@
"attributes": {"media": "all"}
},
{
- "name": "template.light.colors_custom",
+ "name": "template.light.custom",
"type": "style",
- "uri": "media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css",
+ "uri": "media/templates/site/mokocassiopeia/css/theme/light.custom.css",
"attributes": {"media": "all"}
},
{
- "name": "template.light.colors_custom.min",
+ "name": "template.light.custom.min",
"type": "style",
- "uri": "media/templates/site/mokocassiopeia/css/colors/light/colors_custom.min.css",
+ "uri": "media/templates/site/mokocassiopeia/css/theme/light.custom.min.css",
"attributes": {"media": "all"}
},
{
@@ -101,26 +101,26 @@
"attributes": {"media": "all"}
},
{
- "name": "template.dark.colors_alternative",
+ "name": "template.dark.alternative",
"type": "style",
- "uri": "media/templates/site/mokocassiopeia/css/colors/dark/colors_alternative.css",
+ "uri": "media/templates/site/mokocassiopeia/css/theme/dark.alternative.css",
"attributes": {"media": "all"}
},
{
- "name": "template.dark.colors_alternative.min",
+ "name": "template.dark.alternative.min",
"type": "style",
- "uri": "media/templates/site/mokocassiopeia/css/colors/dark/colors_alternative.min.css"
+ "uri": "media/templates/site/mokocassiopeia/css/theme/dark.alternative.min.css"
},
{
- "name": "template.dark.colors_custom",
+ "name": "template.dark.custom",
"type": "style",
- "uri": "media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css",
+ "uri": "media/templates/site/mokocassiopeia/css/theme/dark.custom.css",
"attributes": {"media": "all"}
},
{
- "name": "template.dark.colors_custom.min",
+ "name": "template.dark.custom.min",
"type": "style",
- "uri": "media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.min.css",
+ "uri": "media/templates/site/mokocassiopeia/css/theme/dark.custom.min.css",
"attributes": {"media": "all"}
},
{
diff --git a/src/language/en-GB/tpl_mokocassiopeia.ini b/src/language/en-GB/tpl_mokocassiopeia.ini
index 81e3b70..d3ae6ce 100644
--- a/src/language/en-GB/tpl_mokocassiopeia.ini
+++ b/src/language/en-GB/tpl_mokocassiopeia.ini
@@ -75,9 +75,9 @@ TPL_MOKOCASSIOPEIA_COLOR_NAME_STANDARD="Standard"
TPL_MOKOCASSIOPEIA_COLOR_NAME_CUSTOM="Custom"
; New labels for Theme tab dropdowns
TPL_MOKOCASSIOPEIA_COLOR_LIGHT_NAME_LABEL="Light colour palette"
-TPL_MOKOCASSIOPEIA_COLOR_LIGHT_NAME_DESC="Select a colour palette for light mode. Standard uses the default blue theme with comprehensive styling for all components. Custom allows you to create your own colour scheme - copy the template file from templates/colors_custom.css to media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css and customise the CSS variables to match your brand."
+TPL_MOKOCASSIOPEIA_COLOR_LIGHT_NAME_DESC="Select a colour palette for light mode. Standard uses the default blue theme with comprehensive styling for all components. Custom allows you to create your own colour scheme - copy the template file from templates/theme_custom_light.css to media/templates/site/mokocassiopeia/css/theme/light.custom.css and customise the CSS variables to match your brand."
TPL_MOKOCASSIOPEIA_COLOR_DARK_NAME_LABEL="Dark colour palette"
-TPL_MOKOCASSIOPEIA_COLOR_DARK_NAME_DESC="Select a colour palette for dark mode. Standard uses the default blue theme optimised for dark backgrounds with proper contrast. Custom allows you to create your own colour scheme - copy the template file from templates/colors_custom.css to media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css and customise the CSS variables to match your brand."
+TPL_MOKOCASSIOPEIA_COLOR_DARK_NAME_DESC="Select a colour palette for dark mode. Standard uses the default blue theme optimised for dark backgrounds with proper contrast. Custom allows you to create your own colour scheme - copy the template file from templates/theme_custom_dark.css to media/templates/site/mokocassiopeia/css/theme/dark.custom.css and customise the CSS variables to match your brand."
; ===== Theme tab (core feature strings) =====
TPL_MOKO_THEME_FIELDSET="Theme"
diff --git a/src/language/en-GB/tpl_mokocassiopeia.sys.ini b/src/language/en-GB/tpl_mokocassiopeia.sys.ini
index 069405c..17019a0 100644
--- a/src/language/en-GB/tpl_mokocassiopeia.sys.ini
+++ b/src/language/en-GB/tpl_mokocassiopeia.sys.ini
@@ -34,4 +34,4 @@ TPL_MOKOCASSIOPEIA_POSITION_TOP_B="Top-b"
TPL_MOKOCASSIOPEIA_POSITION_TOPBAR="Top Bar"
TPL_MOKOCASSIOPEIA_POSITION_DRAWER_LEFT="Drawer-Left"
TPL_MOKOCASSIOPEIA_POSITION_DRAWER_RIGHT="Drawer-Right"
-TPL_MOKOCASSIOPEIA_XML_DESCRIPTION="
MokoCassiopeia Template Description
MokoCassiopeia 3.0 continues Joomla’s tradition of space-themed default templates— building on the legacy of Solarflare (Joomla 1.0), Milkyway (Joomla 1.5), and Protostar (Joomla 3.0).
This template is a customized fork of the Cassiopeia template introduced in Joomla 4, preserving its modern, accessible, and mobile-first foundation while introducing new stylistic enhancements and structural refinements specifically tailored for use by Moko Consulting.
Custom Colour Themes
To create a custom colour scheme, copy the template file templates/colors_custom.css to either media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css or media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css. Customise the CSS variables to match your brand, then activate it in System → Site Templates → MokoCassiopeia → Theme tab by selecting "Custom" for the Light or Dark Mode Palette. For comprehensive documentation on all available CSS variables, see docs/CSS_VARIABLES.md.
Code Attribution
This template is based on the original Cassiopeia template developed by the Joomla! Project and released under the GNU General Public License.
Modifications and enhancements have been made by Moko Consulting in accordance with open-source licensing standards.
It includes integration with Bootstrap TOC, an open-source table of contents generator by A. Feld, licensed under the MIT License.
All third-party libraries and assets remain the property of their respective authors and are credited within their source files where applicable.
"
+TPL_MOKOCASSIOPEIA_XML_DESCRIPTION="
MokoCassiopeia Template Description
MokoCassiopeia 3.0 continues Joomla’s tradition of space-themed default templates— building on the legacy of Solarflare (Joomla 1.0), Milkyway (Joomla 1.5), and Protostar (Joomla 3.0).
This template is a customized fork of the Cassiopeia template introduced in Joomla 4, preserving its modern, accessible, and mobile-first foundation while introducing new stylistic enhancements and structural refinements specifically tailored for use by Moko Consulting.
Custom Colour Themes
To create a custom colour scheme, copy the template file templates/theme_custom_light.css to media/templates/site/mokocassiopeia/css/theme/light.custom.css or media/templates/site/mokocassiopeia/css/theme/dark.custom.css. Customise the CSS variables to match your brand, then activate it in System → Site Templates → MokoCassiopeia → Theme tab by selecting "Custom" for the Light or Dark Mode Palette. For comprehensive documentation on all available CSS variables, see docs/CSS_VARIABLES.md.
Code Attribution
This template is based on the original Cassiopeia template developed by the Joomla! Project and released under the GNU General Public License.
Modifications and enhancements have been made by Moko Consulting in accordance with open-source licensing standards.
It includes integration with Bootstrap TOC, an open-source table of contents generator by A. Feld, licensed under the MIT License.
All third-party libraries and assets remain the property of their respective authors and are credited within their source files where applicable.
"
diff --git a/src/language/en-US/tpl_mokocassiopeia.ini b/src/language/en-US/tpl_mokocassiopeia.ini
index 935e232..82aa2bb 100644
--- a/src/language/en-US/tpl_mokocassiopeia.ini
+++ b/src/language/en-US/tpl_mokocassiopeia.ini
@@ -75,9 +75,9 @@ TPL_MOKOCASSIOPEIA_COLOR_NAME_STANDARD="Standard"
TPL_MOKOCASSIOPEIA_COLOR_NAME_CUSTOM="Custom"
; New labels for Theme tab dropdowns
TPL_MOKOCASSIOPEIA_COLOR_LIGHT_NAME_LABEL="Light color palette"
-TPL_MOKOCASSIOPEIA_COLOR_LIGHT_NAME_DESC="Select a color palette for light mode. Standard uses the default blue theme with comprehensive styling for all components. Custom allows you to create your own color scheme - copy the template file from templates/colors_custom.css to media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css and customize the CSS variables to match your brand."
+TPL_MOKOCASSIOPEIA_COLOR_LIGHT_NAME_DESC="Select a color palette for light mode. Standard uses the default blue theme with comprehensive styling for all components. Custom allows you to create your own color scheme - copy the template file from templates/theme_custom_light.css to media/templates/site/mokocassiopeia/css/theme/light.custom.css and customize the CSS variables to match your brand."
TPL_MOKOCASSIOPEIA_COLOR_DARK_NAME_LABEL="Dark color palette"
-TPL_MOKOCASSIOPEIA_COLOR_DARK_NAME_DESC="Select a color palette for dark mode. Standard uses the default blue theme optimized for dark backgrounds with proper contrast. Custom allows you to create your own color scheme - copy the template file from templates/colors_custom.css to media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css and customize the CSS variables to match your brand."
+TPL_MOKOCASSIOPEIA_COLOR_DARK_NAME_DESC="Select a color palette for dark mode. Standard uses the default blue theme optimized for dark backgrounds with proper contrast. Custom allows you to create your own color scheme - copy the template file from templates/theme_custom_dark.css to media/templates/site/mokocassiopeia/css/theme/dark.custom.css and customize the CSS variables to match your brand."
; ===== Theme tab (core feature strings) =====
TPL_MOKO_THEME_FIELDSET="Theme"
diff --git a/src/language/en-US/tpl_mokocassiopeia.sys.ini b/src/language/en-US/tpl_mokocassiopeia.sys.ini
index 2942d9b..af98009 100644
--- a/src/language/en-US/tpl_mokocassiopeia.sys.ini
+++ b/src/language/en-US/tpl_mokocassiopeia.sys.ini
@@ -34,4 +34,4 @@ TPL_MOKOCASSIOPEIA_POSITION_TOP_B="Top-b"
TPL_MOKOCASSIOPEIA_POSITION_TOPBAR="Top Bar"
TPL_MOKOCASSIOPEIA_POSITION_DRAWER_LEFT="Drawer-Left"
TPL_MOKOCASSIOPEIA_POSITION_DRAWER_RIGHT="Drawer-Right"
-TPL_MOKOCASSIOPEIA_XML_DESCRIPTION="
MokoCassiopeia Template Description
MokoCassiopeia 3.0 continues Joomla’s tradition of space-themed default templates— building on the legacy of Solarflare (Joomla 1.0), Milkyway (Joomla 1.5), and Protostar (Joomla 3.0).
This template is a customized fork of the Cassiopeia template introduced in Joomla 4, preserving its modern, accessible, and mobile-first foundation while introducing new stylistic enhancements and structural refinements specifically tailored for use by Moko Consulting.
Custom Color Themes
To create a custom color scheme, copy the template file templates/colors_custom.css to either media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css or media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css. Customize the CSS variables to match your brand, then activate it in System → Site Templates → MokoCassiopeia → Theme tab by selecting "Custom" for the Light or Dark Mode Palette. For comprehensive documentation on all available CSS variables, see docs/CSS_VARIABLES.md.
Code Attribution
This template is based on the original Cassiopeia template developed by the Joomla! Project and released under the GNU General Public License.
Modifications and enhancements have been made by Moko Consulting in accordance with open-source licensing standards.
It includes integration with Bootstrap TOC, an open-source table of contents generator by A. Feld, licensed under the MIT License.
All third-party libraries and assets remain the property of their respective authors and are credited within their source files where applicable.
"
+TPL_MOKOCASSIOPEIA_XML_DESCRIPTION="
MokoCassiopeia Template Description
MokoCassiopeia 3.0 continues Joomla’s tradition of space-themed default templates— building on the legacy of Solarflare (Joomla 1.0), Milkyway (Joomla 1.5), and Protostar (Joomla 3.0).
This template is a customized fork of the Cassiopeia template introduced in Joomla 4, preserving its modern, accessible, and mobile-first foundation while introducing new stylistic enhancements and structural refinements specifically tailored for use by Moko Consulting.
Custom Color Themes
To create a custom color scheme, copy the template file templates/theme_custom_light.css to media/templates/site/mokocassiopeia/css/theme/light.custom.css or media/templates/site/mokocassiopeia/css/theme/dark.custom.css. Customize the CSS variables to match your brand, then activate it in System → Site Templates → MokoCassiopeia → Theme tab by selecting "Custom" for the Light or Dark Mode Palette. For comprehensive documentation on all available CSS variables, see docs/CSS_VARIABLES.md.
Code Attribution
This template is based on the original Cassiopeia template developed by the Joomla! Project and released under the GNU General Public License.
Modifications and enhancements have been made by Moko Consulting in accordance with open-source licensing standards.
It includes integration with Bootstrap TOC, an open-source table of contents generator by A. Feld, licensed under the MIT License.
All third-party libraries and assets remain the property of their respective authors and are credited within their source files where applicable.
Redirecting to the site root… If you are not redirected, click here.
-
-
diff --git a/src/templateDetails.xml b/src/templateDetails.xml
index a1b8f2b..f29f11c 100644
--- a/src/templateDetails.xml
+++ b/src/templateDetails.xml
@@ -41,7 +41,7 @@
Jonathan Miller || Moko Consultinghello@mokoconsulting.tech(C)GNU General Public License Version 3 - 2026 Moko Consulting
- MokoCassiopeia Template Description
MokoCassiopeia 3.0 continues Joomla's tradition of space-themed default templates— building on the legacy of Solarflare (Joomla 1.0), Milkyway (Joomla 1.5), and Protostar (Joomla 3.0).
This template is a customized fork of the Cassiopeia template introduced in Joomla 4, preserving its modern, accessible, and mobile-first foundation while introducing new stylistic enhancements and structural refinements specifically tailored for use by Moko Consulting.
Custom Colour Themes
To create a custom colour scheme, copy the template file templates/colors_custom.css to either media/templates/site/mokocassiopeia/css/colors/light/colors_custom.css or media/templates/site/mokocassiopeia/css/colors/dark/colors_custom.css. Customise the CSS variables to match your brand, then activate it in System → Site Templates → MokoCassiopeia → Theme tab by selecting "Custom" for the Light or Dark Mode Palette. For comprehensive documentation on all available CSS variables, see docs/CSS_VARIABLES.md.
Code Attribution
This template is based on the original Cassiopeia template developed by the Joomla! Project and released under the GNU General Public License.
Modifications and enhancements have been made by Moko Consulting in accordance with open-source licensing standards.
It includes integration with Bootstrap TOC, an open-source table of contents generator by A. Feld, licensed under the MIT License.
All third-party libraries and assets remain the property of their respective authors and are credited within their source files where applicable.
]]>
+ MokoCassiopeia Template Description
MokoCassiopeia 3.0 continues Joomla's tradition of space-themed default templates— building on the legacy of Solarflare (Joomla 1.0), Milkyway (Joomla 1.5), and Protostar (Joomla 3.0).
This template is a customized fork of the Cassiopeia template introduced in Joomla 4, preserving its modern, accessible, and mobile-first foundation while introducing new stylistic enhancements and structural refinements specifically tailored for use by Moko Consulting.
Custom Colour Themes
To create a custom colour scheme, copy the template file templates/theme_custom_light.css to media/templates/site/mokocassiopeia/css/theme/light.custom.css or templates/theme_custom_dark.css to media/templates/site/mokocassiopeia/css/theme/dark.custom.css. Customise the CSS variables to match your brand, then activate it in System → Site Templates → MokoCassiopeia → Theme tab by selecting "Custom" for the Light or Dark Mode Palette. For comprehensive documentation on all available CSS variables, see docs/CSS_VARIABLES.md.
Code Attribution
This template is based on the original Cassiopeia template developed by the Joomla! Project and released under the GNU General Public License.
Modifications and enhancements have been made by Moko Consulting in accordance with open-source licensing standards.
It includes integration with Bootstrap TOC, an open-source table of contents generator by A. Feld, licensed under the MIT License.
All third-party libraries and assets remain the property of their respective authors and are credited within their source files where applicable.
]]>1component.php
diff --git a/templates/README.md b/templates/README.md
index 714770f..caa7de1 100644
--- a/templates/README.md
+++ b/templates/README.md
@@ -9,7 +9,7 @@
This directory contains template files for custom color schemes that can be copied to your template installation.
-## Custom Color Palette Templates
+## Custom Theme Palette Templates
Template files are provided for both light and dark themes with complete Bootstrap button definitions:
@@ -17,18 +17,18 @@ Template files are provided for both light and dark themes with complete Bootstr
| File | Theme | Description |
|------|-------|-------------|
-| `colors_custom_light.css` | Light | Custom light theme with all Bootstrap button variants |
-| `colors_custom_dark.css` | Dark | Custom dark theme with all Bootstrap button variants |
+| `theme_custom_light.css` | Light | Custom light theme with all Bootstrap button variants |
+| `theme_custom_dark.css` | Dark | Custom dark theme with all Bootstrap button variants |
-### Using Custom Color Templates
+### Using Custom Theme Templates
-1. **Copy** the template file to your template's CSS directory:
+1. **Copy** the template file to your template's CSS theme directory:
```bash
# For light theme
- cp templates/colors_custom_light.css src/media/css/colors/light/colors_custom.css
+ cp templates/theme_custom_light.css src/media/css/theme/light.custom.css
# For dark theme
- cp templates/colors_custom_dark.css src/media/css/colors/dark/colors_custom.css
+ cp templates/theme_custom_dark.css src/media/css/theme/dark.custom.css
```
2. **Customize** the CSS variables in your copied file:
@@ -37,12 +37,12 @@ Template files are provided for both light and dark themes with complete Bootstr
- Update button variants if needed
3. **Register** in `src/joomla.asset.json`:
- - Ensure `template.light.colors_custom` and `template.dark.colors_custom` assets are defined
+ - Ensure `template.light.custom` and `template.dark.custom` assets are defined
- Already configured by default in the asset manifest
4. **Activate** via Joomla admin:
- Go to System → Site Templates → MokoCassiopeia
- - Select "Custom" in the Color Palette dropdown
+ - Select "Custom" in the Theme Palette dropdown
- Save and check your site
### Bootstrap Button Variants Included
@@ -57,7 +57,7 @@ All template files include complete definitions for:
Each button variant includes hover, active, focus, and disabled states using CSS variables.
-## Color System Features
+## Theme System Features
### CSS Variable Structure
diff --git a/templates/colors_custom_dark.css b/templates/theme_custom_dark.css
similarity index 98%
rename from templates/colors_custom_dark.css
rename to templates/theme_custom_dark.css
index 724f16c..399c0c3 100644
--- a/templates/colors_custom_dark.css
+++ b/templates/theme_custom_dark.css
@@ -10,7 +10,7 @@
# FILE INFORMATION
DEFGROUP: Joomla.Template.Site
INGROUP: MokoCassiopeia.Templates
- PATH: ./templates/colors_custom_dark.css
+ PATH: ./templates/theme_custom_dark.css
VERSION: 03.08.04
BRIEF: Custom dark theme color template with Bootstrap button definitions
*/
@@ -19,10 +19,10 @@
* CUSTOM DARK THEME TEMPLATE
*
* Copy this file to:
- * src/media/css/colors/dark/colors_custom.css
+ * src/media/css/theme/dark.custom.css
*
* Then register it in src/joomla.asset.json under
- * template.dark.colors_custom asset.
+ * template.dark.custom asset.
* --------------------------------------------- */
:root[data-bs-theme='dark'] {
diff --git a/templates/colors_custom_light.css b/templates/theme_custom_light.css
similarity index 98%
rename from templates/colors_custom_light.css
rename to templates/theme_custom_light.css
index b2af9af..567c74b 100644
--- a/templates/colors_custom_light.css
+++ b/templates/theme_custom_light.css
@@ -10,7 +10,7 @@
# FILE INFORMATION
DEFGROUP: Joomla.Template.Site
INGROUP: MokoCassiopeia.Templates
- PATH: ./templates/colors_custom_light.css
+ PATH: ./templates/theme_custom_light.css
VERSION: 03.08.04
BRIEF: Custom light theme color template with Bootstrap button definitions
*/
@@ -19,10 +19,10 @@
* CUSTOM LIGHT THEME TEMPLATE
*
* Copy this file to:
- * src/media/css/colors/light/colors_custom.css
+ * src/media/css/theme/light.custom.css
*
* Then register it in src/joomla.asset.json under
- * template.light.colors_custom asset.
+ * template.light.custom asset.
* --------------------------------------------- */
:root[data-bs-theme="light"] {